diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-04-17 19:17:40 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-04-17 20:13:34 +0200 |
commit | faabeb854a6e46b46e4f26b22dc2c81e68e2d863 (patch) | |
tree | 89342ff54d5ebfae272d48a613c38d669a454bba /src/net_processing.h | |
parent | 0dd7b234895b02bfc512ae83bd77b581c861d6e9 (diff) |
refactor: Mark member functions const
Diffstat (limited to 'src/net_processing.h')
-rw-r--r-- | src/net_processing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net_processing.h b/src/net_processing.h index 4556d32377..67252acbb6 100644 --- a/src/net_processing.h +++ b/src/net_processing.h @@ -43,7 +43,7 @@ public: virtual ~PeerManager() { } /** Get statistics from node state */ - virtual bool GetNodeStateStats(NodeId nodeid, CNodeStateStats& stats) = 0; + virtual bool GetNodeStateStats(NodeId nodeid, CNodeStateStats& stats) const = 0; /** Whether this node ignores txs received over p2p. */ virtual bool IgnoresIncomingTxs() = 0; |