aboutsummaryrefslogtreecommitdiff
path: root/src/miner.h
diff options
context:
space:
mode:
authorJeremy Rubin <j@rubin.io>2020-01-21 13:48:57 -0800
committerJeremy Rubin <j@rubin.io>2020-09-04 09:46:44 -0700
commit46d955d196043cc297834baeebce31ff778dff80 (patch)
treed150833644522ec9070c75c845da4fe58eb30a1d /src/miner.h
parent23d3ae7accfc690298b1b0bac9615155f485c5ad (diff)
downloadbitcoin-46d955d196043cc297834baeebce31ff778dff80.tar.xz
Remove mapLinks in favor of entry inlined structs with iterator type erasure
Diffstat (limited to 'src/miner.h')
-rw-r--r--src/miner.h2
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);
}
};