diff --git a/core/genesis.go b/core/genesis.go index f05e84199ae4..1eb3b9115f40 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -475,6 +475,9 @@ func (g *Genesis) ToBlock() *types.Block { head.BlobGasUsed = new(uint64) } } + if conf.IsPrague(num, g.Timestamp) { + head.RequestsHash = &types.EmptyRequestsHash + } } return types.NewBlock(head, nil, nil, nil, trie.NewStackTrie(nil)).WithWithdrawals(withdrawals) }