If we refer to the current execution Engine API spec for the build inputs: https://github.com/ethereum/execution-apis/blob/main/src/engine/specification.md#payloadattributesv1
we see that there is no way to specify a gas limit.
It is critical for the security of the network that this parameter remains under the control of the validator set and not the builder set (which should be much smaller and possibly not as aligned with ethereum overall).
I think an easy fix is to specify a PayloadAttributesV2 message (h/t @mkalinin ) that simply appends a gas_limit field:
* gasLimit: QUANTITY, 64 Bits - value for the block gas limit of the new payload
If we refer to the current execution Engine API spec for the build inputs: https://github.com/ethereum/execution-apis/blob/main/src/engine/specification.md#payloadattributesv1
we see that there is no way to specify a gas limit.
It is critical for the security of the network that this parameter remains under the control of the validator set and not the builder set (which should be much smaller and possibly not as aligned with ethereum overall).
I think an easy fix is to specify a
PayloadAttributesV2message (h/t @mkalinin ) that simply appends agas_limitfield: