From eda043b326fb853d511f75e58ac315c7835af918 Mon Sep 17 00:00:00 2001 From: Alonso Date: Fri, 3 Mar 2023 11:34:21 +0100 Subject: [PATCH] fix test --- state/state_test.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/state/state_test.go b/state/state_test.go index 9dd5aaed73..201a3edabb 100644 --- a/state/state_test.go +++ b/state/state_test.go @@ -5,6 +5,7 @@ import ( "encoding/json" "fmt" "io/ioutil" + "math" "math/big" "os" "path/filepath" @@ -51,6 +52,12 @@ var ( stateCfg = state.Config{ MaxCumulativeGasUsed: 800000, ChainID: 1000, + ForkIDIntervals: []state.ForkIDInterval{{ + FromBatchNumber: 0, + ToBatchNumber: math.MaxUint64, + ForkId: 0, + Version: "", + }}, } forkID uint64 = 2 executorClient executorclientpb.ExecutorServiceClient