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
@@ -378,15 +382,21 @@ void CBlockPolicyEstimator::processBlock(unsigned int nBlockHeight,
378
382
// Clear the current block state and update unconfirmed circular buffer
379
383
feeStats.ClearCurrent(nBlockHeight);
380
384
385
+
unsignedint countedTxs = 0;
381
386
// Repopulate the current block states
382
-
for (unsignedint i = 0; i < entries.size(); i++)
383
-
processBlockTx(nBlockHeight, entries[i]);
387
+
for (unsignedint i = 0; i < entries.size(); i++) {
388
+
if (processBlockTx(nBlockHeight, entries[i]))
389
+
countedTxs++;
390
+
}
384
391
385
392
// Update all exponential averages with the current block state
386
393
feeStats.UpdateMovingAverages();
387
394
388
-
LogPrint("estimatefee", "Blockpolicy after updating estimates for %u confirmed entries, new mempool map size %u\n",
389
-
entries.size(), mapMemPoolTxs.size());
395
+
LogPrint("estimatefee", "Blockpolicy after updating estimates for %u of %u txs in block, since last block %u of %u tracked, new mempool map size %u\n",
0 commit comments