We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a251554 commit f9e2dc8Copy full SHA for f9e2dc8
crates/pbs/src/constants.rs
@@ -15,7 +15,7 @@ pub const MAX_SIZE_SUBMIT_BLOCK_RESPONSE: usize = 20 * 1024 * 1024;
15
/// 20 MiB, enough to process ~45000 registrations in one request
16
pub const MAX_SIZE_REGISTER_VALIDATOR_REQUEST: usize = 20 * 1024 * 1024;
17
18
-/// 10 KiB, headers are around 700 bytes + buffer for encoding
19
-pub const MAX_SIZE_GET_HEADER_RESPONSE: usize = 10 * 1024;
+/// 5 MiB, to account for max execution requests / commitments
+pub const MAX_SIZE_GET_HEADER_RESPONSE: usize = 5 * 1024 * 1024;
20
21
pub const MAX_SIZE_DEFAULT: usize = 1024;
0 commit comments