diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-07-28 19:34:54 -0400 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2019-02-22 15:43:02 -0400 |
commit | 6d6bcc77c058fbcfd39c7e3050bbe82fc89024cf (patch) | |
tree | c1c287c2912931607c545c5875029a64c65265f5 /src/interfaces/chain.cpp | |
parent | 00dfb2a440b94a24b61cafb519fb122f6a0ae176 (diff) |
Remove use of g_connman / PushInventory in wallet code
This commit does not change behavior.
Diffstat (limited to 'src/interfaces/chain.cpp')
-rw-r--r-- | src/interfaces/chain.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interfaces/chain.cpp b/src/interfaces/chain.cpp index 8493c5de70..4abb1e638f 100644 --- a/src/interfaces/chain.cpp +++ b/src/interfaces/chain.cpp @@ -11,6 +11,7 @@ #include <policy/policy.h> #include <policy/rbf.h> #include <primitives/block.h> +#include <protocol.h> #include <sync.h> #include <threadsafety.h> #include <txmempool.h> @@ -199,6 +200,11 @@ public: auto it_mp = ::mempool.mapTx.find(txid); return it_mp != ::mempool.mapTx.end() && it_mp->GetCountWithDescendants() > 1; } + void relayTransaction(const uint256& txid) override + { + CInv inv(MSG_TX, txid); + g_connman->ForEachNode([&inv](CNode* node) { node->PushInventory(inv); }); + } void getTransactionAncestry(const uint256& txid, size_t& ancestors, size_t& descendants) override { ::mempool.GetTransactionAncestry(txid, ancestors, descendants); |