diff options
author | John Newbery <john@johnnewbery.com> | 2020-08-24 16:40:10 +0100 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2020-09-07 11:16:12 +0100 |
commit | 3115e00f75b41d9765dcbb376e367b25f61a1d58 (patch) | |
tree | 9b317b56990980b7074ad6794a77f730e96fe8b9 /src/net_processing.cpp | |
parent | e662e2d42afaf9c67c898634a0f3bc200255b6ea (diff) |
[net processing] Move MaybePunishPeerForTx to PeerManager
Diffstat (limited to 'src/net_processing.cpp')
-rw-r--r-- | src/net_processing.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp index 76913bc4b0..c99b73bd31 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -1182,12 +1182,7 @@ bool PeerManager::MaybePunishNodeForBlock(NodeId nodeid, const BlockValidationSt return false; } -/** - * Potentially disconnect and discourage a node based on the contents of a TxValidationState object - * - * @return Returns true if the peer was punished (probably disconnected) - */ -static bool MaybePunishNodeForTx(NodeId nodeid, const TxValidationState& state, const std::string& message = "") +bool PeerManager::MaybePunishNodeForTx(NodeId nodeid, const TxValidationState& state, const std::string& message) { switch (state.GetResult()) { case TxValidationResult::TX_RESULT_UNSET: |