diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-01-18 10:41:27 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-01-18 10:41:32 +0100 |
| commit | a8bd616fea62e0b15c6041d687230f5d9dd47bf9 (patch) | |
| tree | 0e86fd376821825e0d50e56bcc7c6a0f38680a24 /src/net.cpp | |
| parent | Merge pull request #7363 (diff) | |
| parent | Typo fixes in comments (diff) | |
| download | discoin-a8bd616fea62e0b15c6041d687230f5d9dd47bf9.tar.xz discoin-a8bd616fea62e0b15c6041d687230f5d9dd47bf9.zip | |
Merge pull request #7329
9d263bd Typo fixes in comments (Chris Wheeler)
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 84582484e..db8f97abc 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) |