Reth will reject blocks if they have a transaction who's gas_limit is greater than the block's gas limit, so we need to dynamically set the block's gas limit in the block header if it exceeds our default value of 0x7fffffff
block gas limit = MAX(SUM(biggest_transaction_gas_limit, cumulative_gas_used_block(at trx index of current trx)), cumulative_gas_used_block, config.block_gas_limit)
Reth will reject blocks if they have a transaction who's gas_limit is greater than the block's gas limit, so we need to dynamically set the block's gas limit in the block header if it exceeds our default value of
0x7fffffff
block gas limit =
MAX(SUM(biggest_transaction_gas_limit, cumulative_gas_used_block(at trx index of current trx)), cumulative_gas_used_block, config.block_gas_limit)