qt, wallet: Drop unused parameter in Wallet{Frame|View}::encryptWallet

This commit is contained in:
Hennadii Stepanov
2020-10-23 20:07:59 +03:00
parent 6e950118a3
commit f886a20b02
4 changed files with 5 additions and 5 deletions

View File

@@ -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()