mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-14 05:15:14 +02:00
FIX: Account for txs already added to block in addPriorityTxs
This commit is contained in:
@ -262,6 +262,11 @@ void BlockAssembler::addScoreTxs()
|
|||||||
clearedTxs.pop();
|
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
|
// If tx is dependent on other mempool txs which haven't yet been included
|
||||||
// then put it in the waitSet
|
// then put it in the waitSet
|
||||||
if (isStillDependent(iter)) {
|
if (isStillDependent(iter)) {
|
||||||
|
Reference in New Issue
Block a user