diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-06-06 17:07:25 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-07-09 12:48:05 +0200 |
commit | fa0540cd46eaf44d9e1a9f91c3a937986826c4fa (patch) | |
tree | 1bac883d22116dcb2cf9f65e315de8d1a6c4f148 /src/net.cpp | |
parent | f7c19e829eca10ce8b4acafc61264f8bb9b922f3 (diff) |
net: Extract download permission from noban
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 21d340b516..d62c259565 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2643,7 +2643,7 @@ void CConnman::RecordBytesSent(uint64_t bytes) nMaxOutboundTotalBytesSentInCycle = 0; } - // TODO, exclude peers with noban permission + // TODO, exclude peers with download permission nMaxOutboundTotalBytesSentInCycle += bytes; } |