You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -676,8 +676,8 @@ void CBlockPolicyEstimator::processBlock(unsigned int nBlockHeight,
676
676
677
677
unsignedint countedTxs = 0;
678
678
// Update averages with data points from current block
679
-
for (constauto& entry : entries) {
680
-
if (processBlockTx(nBlockHeight, entry))
679
+
for (constauto& tx : txs_removed_for_block) {
680
+
if (processBlockTx(nBlockHeight, tx))
681
681
countedTxs++;
682
682
}
683
683
@@ -688,7 +688,7 @@ void CBlockPolicyEstimator::processBlock(unsigned int nBlockHeight,
688
688
689
689
690
690
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy estimates updated by %u of %u block txs, since last block %u of %u tracked, mempool map size %u, max target %u from %s\n",
0 commit comments