From fbed9c9d6356f86e5507b3fc032f263a17137d57 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 1 Oct 2013 16:26:42 +0200 Subject: special case DoS value == 0 in ProcessMessage() - prevents unneeded log messages, which could make users think something bad was happening --- src/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index 8df288380a..dcf0ee01ae 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3785,8 +3785,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) if (nEvicted > 0) LogPrint("mempool", "mapOrphan overflow, removed %u tx\n", nEvicted); } - int nDoS; - if (state.IsInvalid(nDoS)) + int nDoS = 0; + if (state.IsInvalid(nDoS) && nDoS > 0) pfrom->Misbehaving(nDoS); } @@ -3805,8 +3805,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) CValidationState state; if (ProcessBlock(state, pfrom, &block)) mapAlreadyAskedFor.erase(inv); - int nDoS; - if (state.IsInvalid(nDoS)) + int nDoS = 0; + if (state.IsInvalid(nDoS) && nDoS > 0) pfrom->Misbehaving(nDoS); } -- cgit v1.2.3