diff --git a/simulators/ethereum/engine/client/core.go b/simulators/ethereum/engine/client/core.go index 3cdeda22b4..120a7d56c7 100644 --- a/simulators/ethereum/engine/client/core.go +++ b/simulators/ethereum/engine/client/core.go @@ -3,11 +3,12 @@ package client import ( "encoding/json" "fmt" - "github.com/ethereum/go-ethereum/core" "math/big" "strconv" "time" + "github.com/ethereum/go-ethereum/core" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/params" @@ -545,6 +546,8 @@ func (v *ErigonGenesis) SetTimestamp(timestamp int64, cancun bool) { v.ErigonConfig.ShanghaiTimestamp = big.NewInt(timestamp) if cancun { v.ErigonConfig.CancunTime = big.NewInt(timestamp) + } else { + v.ErigonConfig.CancunTime = big.NewInt(timestamp+12000000) } }