qt, refactor: Drop redundant signalling in WalletView::setWalletModel

This job will be done by WalletFrame::currentWalletSet signal being
emitted in the WalletFrame::setCurrentWallet function.
This commit is contained in:
Hennadii Stepanov
2021-08-11 20:08:39 +03:00
parent 37dcf161d3
commit fcdc8b0fcb
3 changed files with 0 additions and 7 deletions

View File

@@ -118,10 +118,6 @@ void WalletView::setWalletModel(WalletModel *_walletModel)
// Handle changes in encryption status
connect(_walletModel, &WalletModel::encryptionStatusChanged, this, &WalletView::encryptionStatusChanged);
Q_EMIT encryptionStatusChanged();
// update HD status
Q_EMIT hdEnabledStatusChanged();
// Balloon pop-up for new transaction
connect(_walletModel->getTransactionTableModel(), &TransactionTableModel::rowsInserted, this, &WalletView::processNewTransaction);