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:
@ -498,7 +498,7 @@ impl Default for BodiesDownloaderBuilder {
|
||||
request_limit: 200,
|
||||
stream_batch_size: 10_000,
|
||||
// With high block sizes at around 100kb this will be ~4GB of buffered blocks: ~43k
|
||||
max_buffered_blocks: 4 * 1024 * 1024 * 1024 / 100,
|
||||
max_buffered_blocks: 4 * 1024 * 1024 * 1024 / 100_000,
|
||||
concurrent_requests_range: 5..=100,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user