Remove mapLinks in favor of entry inlined structs with iterator type erasure

This commit is contained in:
Jeremy Rubin
2020-01-21 13:48:57 -08:00
parent 23d3ae7acc
commit 46d955d196
5 changed files with 128 additions and 112 deletions

View File

@@ -84,7 +84,7 @@ struct CompareTxIterByAncestorCount {
{
if (a->GetCountWithAncestors() != b->GetCountWithAncestors())
return a->GetCountWithAncestors() < b->GetCountWithAncestors();
return CTxMemPool::CompareIteratorByHash()(a, b);
return CompareIteratorByHash()(a, b);
}
};