From f294da727413210fda279afdc206a4dd12046d56 Mon Sep 17 00:00:00 2001 From: Anthony Towns Date: Sun, 31 Jan 2021 21:59:57 +1000 Subject: txorphanage: Extract GetOrphanTx Extract orphan lookup code into GetOrphanTx function. --- src/txorphanage.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/txorphanage.h') diff --git a/src/txorphanage.h b/src/txorphanage.h index ab4960be69..1adc6f1d6c 100644 --- a/src/txorphanage.h +++ b/src/txorphanage.h @@ -28,6 +28,7 @@ void EraseOrphansFor(NodeId peer) EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans); unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans) EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans); void AddChildrenToWorkSet(const CTransaction& tx, std::set& orphan_work_set) EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans); bool HaveOrphanTx(const GenTxid& gtxid) EXCLUSIVE_LOCKS_REQUIRED(!g_cs_orphans); +std::pair GetOrphanTx(const uint256& txid) EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans); /** Map from txid to orphan transaction record. Limited by * -maxorphantx/DEFAULT_MAX_ORPHAN_TRANSACTIONS */ -- cgit v1.2.3