Merge pull request #9944

b8af7e8 fix issue 9943: cli using wrong filename for storing keys (Rudolf Schmidt)
This commit is contained in:
tobtoht 2025-06-14 18:56:23 +00:00
commit ffa1488f77
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -1004,7 +1004,7 @@ bool simple_wallet::change_password(const std::vector<std::string> &args)
try
{
m_wallet->change_password(m_wallet_file, orig_pwd_container->password(), pwd_container->password());
m_wallet->change_password(m_wallet->get_wallet_file(), orig_pwd_container->password(), pwd_container->password());
}
catch (const tools::error::wallet_logic_error& e)
{