Describe the feature
for https://eips.ethereum.org/EIPS/eip-7934
we need to enforce:
|
if sealed_block.rlp_length() > MAX_RLP_BLOCK_SIZE { |
|
return Err(PayloadBuilderError::other(ConsensusError::BlockTooLarge { |
|
rlp_length: sealed_block.rlp_length(), |
|
max_rlp_length: MAX_RLP_BLOCK_SIZE, |
|
})); |
|
} |
this must be done against this block:
|
let block = self.payload_validator.ensure_well_formed_payload(ExecutionData { |
Additional context
No response
Describe the feature
for https://eips.ethereum.org/EIPS/eip-7934
we need to enforce:
reth/crates/ethereum/payload/src/lib.rs
Lines 362 to 367 in eb4496d
this must be done against this block:
reth/crates/rpc/rpc/src/validation.rs
Line 441 in eb4496d
Additional context
No response