mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 21:23:27 +01:00
wallet2_api: fix generating new wallet in the GUI
It was creating a new wallet without a password first (this should be fixed), then not changing the password correctly
This commit is contained in:
parent
1afc1d0d26
commit
0cdd4b074e
@ -776,7 +776,7 @@ bool WalletImpl::setPassword(const std::string &password)
|
||||
{
|
||||
clearStatus();
|
||||
try {
|
||||
m_wallet->rewrite(m_wallet->get_wallet_file(), password);
|
||||
m_wallet->change_password(m_wallet->get_wallet_file(), m_password, password);
|
||||
m_password = password;
|
||||
} catch (const std::exception &e) {
|
||||
setStatusError(e.what());
|
||||
|
Loading…
Reference in New Issue
Block a user