diff options
author | John Newbery <john@johnnewbery.com> | 2020-10-22 10:38:10 +0100 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2020-12-09 18:10:38 +0000 |
commit | f3f61d0eb937ada5fd00d7d590f5f29325f7f414 (patch) | |
tree | 0a4c094ef6616f64002120a672e1b8653d9735c9 /src | |
parent | 5805b8299f8f4943114de53c4dc09fc2dd9e270b (diff) |
[net processing] Add IgnoresIncomingTxs() function to PeerManager
Diffstat (limited to 'src')
-rw-r--r-- | src/net_processing.h | 3 | ||||
-rw-r--r-- | src/rpc/net.cpp | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/net_processing.h b/src/net_processing.h index 1dedcf3b98..cb34935ad1 100644 --- a/src/net_processing.h +++ b/src/net_processing.h @@ -138,6 +138,9 @@ public: /** Get statistics from node state */ bool GetNodeStateStats(NodeId nodeid, CNodeStateStats& stats); + /** Whether this node ignores txs received over p2p. */ + bool IgnoresIncomingTxs() {return !::g_relay_txes;}; + private: /** Get a shared pointer to the Peer object. * May return an empty shared_ptr if the Peer object can't be found. */ diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp index fa71ea1181..19e717f0af 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -578,7 +578,9 @@ static RPCHelpMan getnetworkinfo() obj.pushKV("localservices", strprintf("%016x", services)); obj.pushKV("localservicesnames", GetServicesNames(services)); } - obj.pushKV("localrelay", g_relay_txes); + if (node.peerman) { + obj.pushKV("localrelay", !node.peerman->IgnoresIncomingTxs()); + } obj.pushKV("timeoffset", GetTimeOffset()); if (node.connman) { obj.pushKV("networkactive", node.connman->GetNetworkActive()); |