qt: Connect WalletView signal to BitcoinGUI slot directly

This change removes redundant intermediate WalletFrame connections.

This commit does not change behavior.
This commit is contained in:
Hennadii Stepanov
2021-05-16 00:13:58 +03:00
parent bd50ff9290
commit f507681baa
3 changed files with 1 additions and 16 deletions

View File

@@ -242,8 +242,3 @@ WalletModel* WalletFrame::currentWalletModel() const
WalletView* wallet_view = currentWalletView();
return wallet_view ? wallet_view->getWalletModel() : nullptr;
}
void WalletFrame::outOfSyncWarningClicked()
{
Q_EMIT requestedSyncWarningInfo();
}