aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-10-28 18:43:42 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-10-28 18:44:55 +0200
commit4146a31ccbb012ff552f303113979b48c086532b (patch)
treeae5cb9b3962d4a4214a1a183d721a33861954bfe /src/qt/walletmodel.h
parentf886a20b02094d657ddb3d792d561d50f2107f07 (diff)
downloadbitcoin-4146a31ccbb012ff552f303113979b48c086532b.tar.xz
qt, wallet: Drop unused parameter in WalletModel::setWalletEncrypted
Diffstat (limited to 'src/qt/walletmodel.h')
-rw-r--r--src/qt/walletmodel.h2
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);