From 759455e2051f3519d2b32793ede09f8d9f36a7fd Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 9 Oct 2024 14:54:11 +0200 Subject: [PATCH] core: update genesis requests hash --- core/genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/genesis.go b/core/genesis.go index a14a5438d1..eff92084eb 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -472,7 +472,7 @@ func (g *Genesis) toBlockWithRoot(root common.Hash) *types.Block { } } if conf.IsPrague(num, g.Timestamp) { - emptyRequests := [][]byte{{0}} + emptyRequests := [][]byte{{0x00}, {0x01}, {0x02}} rhash := types.CalcRequestsHash(emptyRequests) head.RequestsHash = &rhash }