| 384 | } |
| 385 | |
| 386 | bool WalletModel::changePassphrase(const SecureString &oldPass, const SecureString &newPass) |
| 387 | { |
| 388 | m_wallet->lock(); // Make sure wallet is locked before attempting pass change |
| 389 | return m_wallet->changeWalletPassphrase(oldPass, newPass); |
| 390 | } |
| 391 | |
| 392 | // Handlers for core signals |
| 393 | static void NotifyUnload(WalletModel* walletModel) |
nothing calls this directly
no test coverage detected