mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-26 17:32:33 +00:00
Merge pull request #8999
205c804
wallet: store watch-only wallet correctly when change_password() is called (jeff)
This commit is contained in:
commit
41157dbc82
1 changed files with 2 additions and 2 deletions
|
@ -4460,7 +4460,7 @@ boost::optional<wallet2::keys_file_data> wallet2::get_keys_file_data(const epee:
|
||||||
value2.SetInt(m_key_device_type);
|
value2.SetInt(m_key_device_type);
|
||||||
json.AddMember("key_on_device", value2, json.GetAllocator());
|
json.AddMember("key_on_device", value2, json.GetAllocator());
|
||||||
|
|
||||||
value2.SetInt(watch_only ? 1 :0); // WTF ? JSON has different true and false types, and not boolean ??
|
value2.SetInt((watch_only || m_watch_only) ? 1 :0); // WTF ? JSON has different true and false types, and not boolean ??
|
||||||
json.AddMember("watch_only", value2, json.GetAllocator());
|
json.AddMember("watch_only", value2, json.GetAllocator());
|
||||||
|
|
||||||
value2.SetInt(m_multisig ? 1 :0);
|
value2.SetInt(m_multisig ? 1 :0);
|
||||||
|
@ -6395,7 +6395,7 @@ void wallet2::store_to(const std::string &path, const epee::wipeable_string &pas
|
||||||
|
|
||||||
if (!same_file || force_rewrite_keys)
|
if (!same_file || force_rewrite_keys)
|
||||||
{
|
{
|
||||||
bool r = store_keys(m_keys_file, password, false);
|
bool r = store_keys(m_keys_file, password, m_watch_only);
|
||||||
THROW_WALLET_EXCEPTION_IF(!r, error::file_save_error, m_keys_file);
|
THROW_WALLET_EXCEPTION_IF(!r, error::file_save_error, m_keys_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue