diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-05-16 00:13:58 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-06-06 01:04:15 +0300 |
commit | f507681baa406046c9c3d44be39e99124a2d6e5f (patch) | |
tree | 47c4fbbcc708d367d8bd247f74c66be22e70ad92 /src/qt/walletframe.cpp | |
parent | bd50ff9290ea9ec8b482db11314a6fd658373f23 (diff) |
qt: Connect WalletView signal to BitcoinGUI slot directly
This change removes redundant intermediate WalletFrame connections.
This commit does not change behavior.
Diffstat (limited to 'src/qt/walletframe.cpp')
-rw-r--r-- | src/qt/walletframe.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index 0f2ea99685..a1f357e0db 100644 --- a/src/qt/walletframe.cpp +++ b/src/qt/walletframe.cpp @@ -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(); -} |