| 141 | return m_wallet->EncryptWallet(wallet_passphrase); |
| 142 | } |
| 143 | bool isCrypted() override { return m_wallet->HasEncryptionKeys(); } |
| 144 | bool lock() override { return m_wallet->Lock(); } |
| 145 | bool unlock(const SecureString& wallet_passphrase) override { return m_wallet->Unlock(wallet_passphrase); } |
| 146 | bool isLocked() override { return m_wallet->IsLocked(); } |
no test coverage detected