mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
fix: should be kilobytes (#2663)
This commit is contained in:
@ -130,7 +130,7 @@ impl Default for BodiesConfig {
|
||||
downloader_request_limit: 200,
|
||||
downloader_stream_batch_size: 10_000,
|
||||
// With high block sizes at around 100kb this will be ~4GB of buffered blocks: ~43k
|
||||
downloader_max_buffered_blocks: 4 * 1024 * 1024 * 1024 / 100,
|
||||
downloader_max_buffered_blocks: 4 * 1024 * 1024 * 1024 / 100_000,
|
||||
downloader_min_concurrent_requests: 5,
|
||||
downloader_max_concurrent_requests: 100,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user