From: fsb4000 Date: Tue, 18 Nov 2014 12:18:51 +0000 (+0600) Subject: Revert "fix bug "refresh minting tab"" X-Git-Tag: nvc-v0.5.0~35^2~2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=d81967aac0d13a39c13c985d5f1230bebad6756a;hp=b57f973841a1292142bc2b326f3891fc6d273c88 Revert "fix bug "refresh minting tab"" This reverts commit 3172f77ecb720d462a2fa6b5e78f8460ce2c9cfe. --- diff --git a/src/qt/mintingtablemodel.cpp b/src/qt/mintingtablemodel.cpp index a6ab89b..4973480 100644 --- a/src/qt/mintingtablemodel.cpp +++ b/src/qt/mintingtablemodel.cpp @@ -235,7 +235,6 @@ void MintingTableModel::update() if(!updated.empty()) { priv->updateWallet(updated); - priv->refreshWallet(); } } diff --git a/src/wallet.cpp b/src/wallet.cpp index 08d269d..3aed377 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -2721,10 +2721,8 @@ void CWallet::UpdatedTransaction(const uint256 &hashTx) // Only notify UI if this transaction is in this wallet map::const_iterator mi = mapWallet.find(hashTx); if (mi != mapWallet.end()) - { NotifyTransactionChanged(this, hashTx, CT_UPDATED); - vMintingWalletUpdated.push_back(hashTx); - } + vMintingWalletUpdated.push_back(hashTx); } }