diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-10-28 18:43:42 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-10-28 18:44:55 +0200 |
commit | 4146a31ccbb012ff552f303113979b48c086532b (patch) | |
tree | ae5cb9b3962d4a4214a1a183d721a33861954bfe /src/qt/walletmodel.h | |
parent | f886a20b02094d657ddb3d792d561d50f2107f07 (diff) |
qt, wallet: Drop unused parameter in WalletModel::setWalletEncrypted
Diffstat (limited to 'src/qt/walletmodel.h')
-rw-r--r-- | src/qt/walletmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index fd52db2da3..9a3c3f2f66 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -105,7 +105,7 @@ public: SendCoinsReturn sendCoins(WalletModelTransaction &transaction); // Wallet encryption - bool setWalletEncrypted(bool encrypted, const SecureString &passphrase); + bool setWalletEncrypted(const SecureString& passphrase); // Passphrase only needed when unlocking bool setWalletLocked(bool locked, const SecureString &passPhrase=SecureString()); bool changePassphrase(const SecureString &oldPass, const SecureString &newPass); |