aboutsummaryrefslogtreecommitdiff
path: root/src/net_processing.cpp
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2020-05-21 10:42:37 -0400
committerMarcoFalke <[email protected]>2020-06-04 16:39:23 -0400
commitfa9604c46f3245a704487c29b684caadffbf73bc (patch)
tree190637c73190b8582ce66f338922ce6ff4c14152 /src/net_processing.cpp
parentnet: Reformat excessively long if condition into multiple lines (diff)
downloaddiscoin-fa9604c46f3245a704487c29b684caadffbf73bc.tar.xz
discoin-fa9604c46f3245a704487c29b684caadffbf73bc.zip
doc: noban precludes maxuploadtarget disconnects
Diffstat (limited to 'src/net_processing.cpp')
-rw-r--r--src/net_processing.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp
index 18695c8f4..d48745aef 100644
--- a/src/net_processing.cpp
+++ b/src/net_processing.cpp
@@ -1509,11 +1509,10 @@ void static ProcessGetBlockData(CNode& pfrom, const CChainParams& chainparams, c
}
const CNetMsgMaker msgMaker(pfrom.GetSendVersion());
// disconnect node in case we have reached the outbound limit for serving historical blocks
- // never disconnect whitelisted nodes
if (send &&
connman->OutboundTargetReached(true) &&
(((pindexBestHeader != nullptr) && (pindexBestHeader->GetBlockTime() - pindex->GetBlockTime() > HISTORICAL_BLOCK_AGE)) || inv.type == MSG_FILTERED_BLOCK) &&
- !pfrom.HasPermission(PF_NOBAN)
+ !pfrom.HasPermission(PF_NOBAN) // never disconnect nodes with the noban permission
) {
LogPrint(BCLog::NET, "historical block serving limit reached, disconnect peer=%d\n", pfrom.GetId());