feat: enable Bernoulli upgrade on Scroll mainnet (#710)

* feat: enable Bernoulli upgrade on Scroll mainnet

* Update config.go
This commit is contained in:
Péter Garamvölgyi 2024-04-22 12:53:11 +08:00 committed by GitHub
parent 0252f85816
commit 246955a4df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -23,8 +23,8 @@ import (
const (
VersionMajor = 5 // Major version component of the current release
VersionMinor = 2 // Minor version component of the current release
VersionPatch = 6 // Patch version component of the current release
VersionMinor = 3 // Minor 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
)