mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #1504
5f4ac6b9
wallet2 bugfix: store watch_only flag properly with rewrite() (kenshi84)
This commit is contained in:
commit
0ce4618bea
@ -2138,7 +2138,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