aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/blockchain.cpp
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/rpc/blockchain.cpp
parent23d3ae7accfc690298b1b0bac9615155f485c5ad (diff)
downloadbitcoin-46d955d196043cc297834baeebce31ff778dff80.tar.xz
Remove mapLinks in favor of entry inlined structs with iterator type erasure
Diffstat (limited to 'src/rpc/blockchain.cpp')
-rw-r--r--src/rpc/blockchain.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp
index 033e00daf5..04b9c6b1cc 100644
--- a/src/rpc/blockchain.cpp
+++ b/src/rpc/blockchain.cpp
@@ -463,9 +463,9 @@ static void entryToJSON(const CTxMemPool& pool, UniValue& info, const CTxMemPool
UniValue spent(UniValue::VARR);
const CTxMemPool::txiter& it = pool.mapTx.find(tx.GetHash());
- const CTxMemPool::setEntries& setChildren = pool.GetMemPoolChildren(it);
- for (CTxMemPool::txiter childiter : setChildren) {
- spent.push_back(childiter->GetTx().GetHash().ToString());
+ const CTxMemPoolEntry::Children& children = it->GetMemPoolChildrenConst();
+ for (const CTxMemPoolEntry& child : children) {
+ spent.push_back(child.GetTx().GetHash().ToString());
}
info.pushKV("spentby", spent);