We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a8bde commit 0776495Copy full SHA for 0776495
runner/network/consensus/sequencer_consensus.go
@@ -184,6 +184,9 @@ func (f *SequencerConsensusClient) generatePayloadAttributes(sequencerTxs [][]by
184
185
root := crypto.Keccak256Hash([]byte("fake-beacon-block-root"), big.NewInt(int64(1)).Bytes())
186
187
+ // MinBaseFee is required post-Jovian hardfork
188
+ minBaseFee := uint64(1)
189
+
190
payloadAttrs := ð.PayloadAttributes{
191
Timestamp: eth.Uint64Quantity(timestamp),
192
PrevRandao: eth.Bytes32{},
@@ -194,6 +197,7 @@ func (f *SequencerConsensusClient) generatePayloadAttributes(sequencerTxs [][]by
194
197
ParentBeaconBlockRoot: &root,
195
198
NoTxPool: false,
196
199
EIP1559Params: &b8,
200
+ MinBaseFee: &minBaseFee,
201
}
202
203
return payloadAttrs, &root, nil
0 commit comments