mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
wallet2 bugfix: store watch_only flag properly with rewrite()
This commit is contained in:
parent
dd580d7bc7
commit
5f4ac6b909
@ -2139,7 +2139,7 @@ void wallet2::rewrite(const std::string& wallet_name, const std::string& passwor
|
||||
prepare_file_names(wallet_name);
|
||||
boost::system::error_code ignored_ec;
|
||||
THROW_WALLET_EXCEPTION_IF(!boost::filesystem::exists(m_keys_file, ignored_ec), error::file_not_found, m_keys_file);
|
||||
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);
|
||||
}
|
||||
/*!
|
||||
|
Loading…
Reference in New Issue
Block a user