aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2025-06-14 18:57:09 +0000
committertobtoht <tob@featherwallet.org>2025-06-14 18:57:09 +0000
commit3c644537b70bb4a5575ee41b0ea0e37724b18871 (patch)
tree8892dfb079d6590b96c1ad9c23af5c138e7d9cd7 /src
parentdf765433699ee53f4ee0fef1b3991ab14e9f2267 (diff)
parent273d368aacff21ec4a811cb8c69d737e8aa78b6f (diff)
downloadmonzero-core-3c644537b70bb4a5575ee41b0ea0e37724b18871.tar.gz
monzero-core-3c644537b70bb4a5575ee41b0ea0e37724b18871.tar.xz
monzero-core-3c644537b70bb4a5575ee41b0ea0e37724b18871.zip
Merge pull request #9945
273d368 fix issue 9943: cli using wrong filename for storing keys (Rudolf Schmidt)
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index 89691e9f7..dae348ab0 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -1017,7 +1017,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)
{