diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-05-17 16:12:57 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-05-20 15:56:01 +0800 |
commit | 8906b2fe0934c67ebb1db5d4d77acdf1a7e988f0 (patch) | |
tree | 11f6b45c09819b47d0324d17e1dc3a27f84e6647 /eth/downloader/queue.go | |
parent | e86619e75d1bd1209818ab4df2fac52e3c43b5e1 (diff) | |
download | go-tangerine-8906b2fe0934c67ebb1db5d4d77acdf1a7e988f0.tar.gz go-tangerine-8906b2fe0934c67ebb1db5d4d77acdf1a7e988f0.tar.zst go-tangerine-8906b2fe0934c67ebb1db5d4d77acdf1a7e988f0.zip |
eth/downloader: fix reviewer comments
Diffstat (limited to 'eth/downloader/queue.go')
-rw-r--r-- | eth/downloader/queue.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eth/downloader/queue.go b/eth/downloader/queue.go index dd839de19..195eae4ff 100644 --- a/eth/downloader/queue.go +++ b/eth/downloader/queue.go @@ -39,8 +39,8 @@ import ( ) var ( - blockCacheLimit = 16384 // Maximum number of blocks to cache before throttling the download - maxInFlightStates = 8192 // Maximum number of state downloads to allow concurrently + blockCacheLimit = 8192 // Maximum number of blocks to cache before throttling the download + maxInFlightStates = 8192 // Maximum number of state downloads to allow concurrently ) var ( |