chain: move new settings safely in overwriteRwSetting

This commit is contained in:
ismaelsadeeq
2024-09-05 20:40:01 +01:00
parent 1c409004c8
commit 1e9e735670
3 changed files with 3 additions and 3 deletions

View File

@@ -361,7 +361,7 @@ public:
virtual bool updateRwSetting(const std::string& name, const SettingsUpdate& update_function) = 0;
//! Replace a setting in <datadir>/settings.json with a new value.
virtual bool overwriteRwSetting(const std::string& name, common::SettingsValue& value, bool write = true) = 0;
virtual bool overwriteRwSetting(const std::string& name, common::SettingsValue value, bool write = true) = 0;
//! Delete a given setting in <datadir>/settings.json.
virtual bool deleteRwSettings(const std::string& name, bool write = true) = 0;