diff options
author | Jeremy Rubin <j@rubin.io> | 2020-01-21 13:48:57 -0800 |
---|---|---|
committer | Jeremy Rubin <j@rubin.io> | 2020-09-04 09:46:44 -0700 |
commit | 46d955d196043cc297834baeebce31ff778dff80 (patch) | |
tree | d150833644522ec9070c75c845da4fe58eb30a1d /src/miner.h | |
parent | 23d3ae7accfc690298b1b0bac9615155f485c5ad (diff) |
Remove mapLinks in favor of entry inlined structs with iterator type erasure
Diffstat (limited to 'src/miner.h')
-rw-r--r-- | src/miner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miner.h b/src/miner.h index 096585dfe4..bb7a30b184 100644 --- a/src/miner.h +++ b/src/miner.h @@ -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); } }; |