diff options
| author | Rudolf Schmidt <info@rudolfschmidt.com> | 2025-06-07 15:47:16 +0200 |
|---|---|---|
| committer | Rudolf Schmidt <info@rudolfschmidt.com> | 2025-06-07 15:47:16 +0200 |
| commit | 273d368aacff21ec4a811cb8c69d737e8aa78b6f (patch) | |
| tree | 8892dfb079d6590b96c1ad9c23af5c138e7d9cd7 | |
| parent | df765433699ee53f4ee0fef1b3991ab14e9f2267 (diff) | |
| download | monzero-core-273d368aacff21ec4a811cb8c69d737e8aa78b6f.tar.gz monzero-core-273d368aacff21ec4a811cb8c69d737e8aa78b6f.tar.xz monzero-core-273d368aacff21ec4a811cb8c69d737e8aa78b6f.zip | |
fix issue 9943: cli using wrong filename for storing keys
| -rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
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) { |
