fe7e593 Fix use-after-free in CTxMemPool::removeConflicts() (Suhas Daftuar)
fe7e593
@ -581,8 +581,8 @@ void CTxMemPool::removeConflicts(const CTransaction &tx)
const CTransaction &txConflict = *it->second;
if (txConflict != tx)
{
removeRecursive(txConflict);
ClearPrioritisation(txConflict.GetHash());
}