QT: WalletModel should always check for balance changes once

This commit is contained in:
Gregory Sanders 2019-04-17 15:29:41 -04:00
parent 93e26608c2
commit f47578083e

View file

@ -51,7 +51,7 @@ WalletModel::WalletModel(std::unique_ptr<interfaces::Wallet> wallet, interfaces:
cachedNumBlocks(0) cachedNumBlocks(0)
{ {
fHaveWatchOnly = m_wallet->haveWatchOnly(); fHaveWatchOnly = m_wallet->haveWatchOnly();
fForceCheckBalanceChanged = false; fForceCheckBalanceChanged = true;
addressTableModel = new AddressTableModel(this); addressTableModel = new AddressTableModel(this);
transactionTableModel = new TransactionTableModel(platformStyle, this); transactionTableModel = new TransactionTableModel(platformStyle, this);