mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
fix: allow smaller header size
This commit is contained in:
@@ -1218,7 +1218,9 @@ impl ReverseHeadersDownloaderBuilder {
|
|||||||
next_request_block_number: 0,
|
next_request_block_number: 0,
|
||||||
next_chain_tip_block_number: 0,
|
next_chain_tip_block_number: 0,
|
||||||
lowest_validated_header: None,
|
lowest_validated_header: None,
|
||||||
request_limit,
|
// TODO(mattsse): tmp hotfix to prevent issues with syncing from besu which has an upper
|
||||||
|
// limit of 512
|
||||||
|
request_limit: request_limit.min(512),
|
||||||
min_concurrent_requests,
|
min_concurrent_requests,
|
||||||
max_concurrent_requests,
|
max_concurrent_requests,
|
||||||
stream_batch_size,
|
stream_batch_size,
|
||||||
|
|||||||
Reference in New Issue
Block a user