diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-10-23 20:07:59 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-10-23 20:09:55 +0300 |
commit | f886a20b02094d657ddb3d792d561d50f2107f07 (patch) | |
tree | 59f03c9a2ae534c6f0631e7b3acf079284452c29 /src/qt/walletframe.cpp | |
parent | 6e950118a31fd6a85026d934fc6adb6255e47e23 (diff) |
qt, wallet: Drop unused parameter in Wallet{Frame|View}::encryptWallet
Diffstat (limited to 'src/qt/walletframe.cpp')
-rw-r--r-- | src/qt/walletframe.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index f16761d6b2..345305cde5 100644 --- a/src/qt/walletframe.cpp +++ b/src/qt/walletframe.cpp @@ -194,11 +194,11 @@ void WalletFrame::gotoLoadPSBT(bool from_clipboard) } } -void WalletFrame::encryptWallet(bool status) +void WalletFrame::encryptWallet() { WalletView *walletView = currentWalletView(); if (walletView) - walletView->encryptWallet(status); + walletView->encryptWallet(); } void WalletFrame::backupWallet() |