FIX: Account for txs already added to block in addPriorityTxs

This commit is contained in:
Alex Morcos 2016-05-24 14:23:15 -04:00
parent 4dc94d1036
commit a278764748

View file

@ -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)) {