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

pull/679/head
Hennadii Stepanov 4 years ago
parent 6e950118a3
commit f886a20b02
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F

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

@ -82,7 +82,7 @@ public Q_SLOTS:
void gotoLoadPSBT(bool from_clipboard = false);
/** Encrypt the wallet */
void encryptWallet(bool status);
void encryptWallet();
/** Backup the wallet */
void backupWallet();
/** Change encrypted wallet passphrase */

@ -258,7 +258,7 @@ void WalletView::updateEncryptionStatus()
Q_EMIT encryptionStatusChanged();
}
void WalletView::encryptWallet(bool status)
void WalletView::encryptWallet()
{
if(!walletModel)
return;

@ -92,7 +92,7 @@ public Q_SLOTS:
*/
void processNewTransaction(const QModelIndex& parent, int start, int /*end*/);
/** Encrypt the wallet */
void encryptWallet(bool status);
void encryptWallet();
/** Backup the wallet */
void backupWallet();
/** Change encrypted wallet passphrase */

Loading…
Cancel
Save