From bc2b4a3442aeb3e027701156cfd26816e827575b Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Wed, 17 Apr 2019 15:29:41 -0400 Subject: [PATCH] QT: WalletModel should always check for balance changes once --- src/qt/walletmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 9a6a06397a..efe583377b 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -51,7 +51,7 @@ WalletModel::WalletModel(std::unique_ptr wallet, interfaces: cachedNumBlocks(0) { fHaveWatchOnly = m_wallet->haveWatchOnly(); - fForceCheckBalanceChanged = false; + fForceCheckBalanceChanged = true; addressTableModel = new AddressTableModel(this); transactionTableModel = new TransactionTableModel(platformStyle, this);