mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Merge b6a16fa44e into merged_master (Bitcoin PR #18123)
This commit is contained in:
commit
59e331ab92
1 changed files with 2 additions and 2 deletions
|
|
@ -101,12 +101,12 @@ void WalletModel::pollBalanceChanged()
|
|||
return;
|
||||
}
|
||||
|
||||
if(fForceCheckBalanceChanged || m_node.getNumBlocks() != cachedNumBlocks)
|
||||
if(fForceCheckBalanceChanged || numBlocks != cachedNumBlocks)
|
||||
{
|
||||
fForceCheckBalanceChanged = false;
|
||||
|
||||
// Balance and number of transactions might have changed
|
||||
cachedNumBlocks = m_node.getNumBlocks();
|
||||
cachedNumBlocks = numBlocks;
|
||||
|
||||
checkBalanceChanged(new_balances);
|
||||
if(transactionTableModel)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue