mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 02:25:40 +01:00
qt, wallet: Drop unused parameter in Wallet{Frame|View}::encryptWallet
This commit is contained in:
parent
6e950118a3
commit
f886a20b02
@ -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…
Reference in New Issue
Block a user