feat(sepolia): enable Bernoulli hard fork (#688)

* feat(sepolia): enable Bernoulli hard fork

* update fork block
This commit is contained in:
Péter Garamvölgyi 2024-04-08 13:59:31 +08:00 committed by GitHub
parent d0ff83941c
commit 85447ec9a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -317,7 +317,7 @@ var (
ArrowGlacierBlock: nil, ArrowGlacierBlock: nil,
ArchimedesBlock: big.NewInt(0), ArchimedesBlock: big.NewInt(0),
ShanghaiBlock: big.NewInt(0), ShanghaiBlock: big.NewInt(0),
BernoulliBlock: nil, BernoulliBlock: big.NewInt(3747132),
CurieBlock: nil, CurieBlock: nil,
Clique: &CliqueConfig{ Clique: &CliqueConfig{
Period: 3, Period: 3,

View file

@ -23,8 +23,8 @@ import (
const ( const (
VersionMajor = 5 // Major version component of the current release VersionMajor = 5 // Major version component of the current release
VersionMinor = 1 // Minor version component of the current release VersionMinor = 2 // Minor version component of the current release
VersionPatch = 34 // Patch version component of the current release VersionPatch = 0 // Patch version component of the current release
VersionMeta = "mainnet" // Version metadata to append to the version string VersionMeta = "mainnet" // Version metadata to append to the version string
) )