diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-16 15:16:32 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-16 15:18:24 +0000 |
commit | 7ae3ebc7a8d94e098cb2df0ca0cd5c5909271666 (patch) | |
tree | e2a464ab27be14b5ef294842ac7a7455554e14ff /src/wallet/wallet_rpc_server.cpp | |
parent | Merge pull request #4622 (diff) | |
download | monero-7ae3ebc7a8d94e098cb2df0ca0cd5c5909271666.tar.xz |
wallet_rpc_server: fix change_wallet_password RPC
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet_rpc_server.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index e0b631aaf..1b63d65b6 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -2822,8 +2822,7 @@ namespace tools { try { - m_wallet->rewrite(m_wallet->get_wallet_file(), req.new_password); - m_wallet->store(); + m_wallet->change_password(m_wallet->get_wallet_file(), req.old_password, req.new_password); LOG_PRINT_L0("Wallet password changed."); } catch (const std::exception& e) |