fix: allow smaller header size

This commit is contained in:
Matthias Seitz
2025-12-16 17:08:53 +01:00
parent 4231f4b688
commit 5c04d1abe1

View File

@@ -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,