Skip to content

Commit 0776495

Browse files
committed
Fix base fee
1 parent e4a8bde commit 0776495

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

runner/network/consensus/sequencer_consensus.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@ func (f *SequencerConsensusClient) generatePayloadAttributes(sequencerTxs [][]by
184184

185185
root := crypto.Keccak256Hash([]byte("fake-beacon-block-root"), big.NewInt(int64(1)).Bytes())
186186

187+
// MinBaseFee is required post-Jovian hardfork
188+
minBaseFee := uint64(1)
189+
187190
payloadAttrs := &eth.PayloadAttributes{
188191
Timestamp: eth.Uint64Quantity(timestamp),
189192
PrevRandao: eth.Bytes32{},
@@ -194,6 +197,7 @@ func (f *SequencerConsensusClient) generatePayloadAttributes(sequencerTxs [][]by
194197
ParentBeaconBlockRoot: &root,
195198
NoTxPool: false,
196199
EIP1559Params: &b8,
200+
MinBaseFee: &minBaseFee,
197201
}
198202

199203
return payloadAttrs, &root, nil

0 commit comments

Comments
 (0)