diff --git a/eth/downloader/queue.go b/eth/downloader/queue.go index c0e1a4145d..2478e4da76 100644 --- a/eth/downloader/queue.go +++ b/eth/downloader/queue.go @@ -43,8 +43,8 @@ const ( var ( blockCacheMaxItems = 8192 // Maximum number of blocks to cache before throttling the download - blockCacheInitialItems = 16 // Initial number of blocks to start fetching, before we know the sizes of the blocks - blockCacheMemory = 256 * 1024 * 1024 // Maximum amount of memory to use for block caching + blockCacheInitialItems = 32 // Initial number of blocks to start fetching, before we know the sizes of the blocks + blockCacheMemory = 512 * 1024 * 1024 // Maximum amount of memory to use for block caching ) var (