diff options
author | Chris Wheeler <chris@haydenwheeler.com> | 2016-01-17 11:03:56 +0000 |
---|---|---|
committer | Chris Wheeler <chris@haydenwheeler.com> | 2016-01-17 11:03:56 +0000 |
commit | 9d263bd17c2bdd5ba9e31bd5fb110c332eb80691 (patch) | |
tree | e52d90fb446cd0039d2f39b707fe549a89234371 /src/net.cpp | |
parent | dd1304ec216c7d4bdb302195e184b15503819f67 (diff) |
Typo fixes in comments
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 84582484e5..db8f97abc2 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2177,7 +2177,7 @@ bool CNode::OutboundTargetReached(bool historicalBlockServingLimit) if (historicalBlockServingLimit) { - // keep a large enought buffer to at least relay each block once + // keep a large enough buffer to at least relay each block once uint64_t timeLeftInCycle = GetMaxOutboundTimeLeftInCycle(); uint64_t buffer = timeLeftInCycle / 600 * MAX_BLOCK_SIZE; if (buffer >= nMaxOutboundLimit || nMaxOutboundTotalBytesSentInCycle >= nMaxOutboundLimit - buffer) |