We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a278764 commit c2dd5a3Copy full SHA for c2dd5a3
src/miner.cpp
@@ -352,7 +352,7 @@ void BlockAssembler::addPriorityTxs()
352
353
// If now that this txs is added we've surpassed our desired priority size
354
// or have dropped below the AllowFreeThreshold, then we're done adding priority txs
355
- if (nBlockSize + iter->GetTxSize() >= nBlockPrioritySize || !AllowFree(actualPriority)) {
+ if (nBlockSize >= nBlockPrioritySize || !AllowFree(actualPriority)) {
356
return;
357
}
358
0 commit comments