aboutsummaryrefslogtreecommitdiff
path: root/src/txorphanage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/txorphanage.cpp')
-rw-r--r--src/txorphanage.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/txorphanage.cpp b/src/txorphanage.cpp
index c1443115f0..473abd5044 100644
--- a/src/txorphanage.cpp
+++ b/src/txorphanage.cpp
@@ -119,3 +119,13 @@ void AddChildrenToWorkSet(const CTransaction& tx, std::set<uint256>& orphan_work
}
}
+bool HaveOrphanTx(const GenTxid& gtxid)
+{
+ LOCK(g_cs_orphans);
+ if (gtxid.IsWtxid()) {
+ return g_orphans_by_wtxid.count(gtxid.GetHash());
+ } else {
+ return mapOrphanTransactions.count(gtxid.GetHash());
+ }
+}
+