Browse Source

FIX: Account for txs already added to block in addPriorityTxs

0.13
Alex Morcos 9 years ago
parent
commit
a278764748
  1. 5
      src/miner.cpp

5
src/miner.cpp

@ -262,6 +262,11 @@ void BlockAssembler::addScoreTxs() @@ -262,6 +262,11 @@ void BlockAssembler::addScoreTxs()
clearedTxs.pop();
}
// If tx already in block, skip (added by addPriorityTxs)
if (inBlock.count(iter)) {
continue;
}
// If tx is dependent on other mempool txs which haven't yet been included
// then put it in the waitSet
if (isStillDependent(iter)) {

Loading…
Cancel
Save