| 136 | bool lock() override { return m_wallet->Lock(); } |
| 137 | bool unlock(const SecureString& wallet_passphrase) override { return m_wallet->Unlock(wallet_passphrase); } |
| 138 | bool isLocked() override { return m_wallet->IsLocked(); } |
| 139 | bool changeWalletPassphrase(const SecureString& old_wallet_passphrase, |
| 140 | const SecureString& new_wallet_passphrase) override |
| 141 | { |
no test coverage detected