Browse Source

Clean up tx prioritization when conflict mined

0.13
Casey Rodarmor 9 years ago
parent
commit
2d8c49d126
  1. 1
      src/txmempool.cpp

1
src/txmempool.cpp

@ -193,6 +193,7 @@ void CTxMemPool::removeConflicts(const CTransaction &tx, std::list<CTransaction>
if (txConflict != tx) if (txConflict != tx)
{ {
remove(txConflict, removed, true); remove(txConflict, removed, true);
ClearPrioritisation(txConflict.GetHash());
} }
} }
} }

Loading…
Cancel
Save