Skip to content

Commit

Permalink
feat: enable Bernoulli upgrade on Scroll mainnet (#710)
Browse files Browse the repository at this point in the history
* feat: enable Bernoulli upgrade on Scroll mainnet

* Update config.go
  • Loading branch information
Thegaram authored Apr 22, 2024
1 parent 0252f85 commit 246955a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down

0 comments on commit 246955a

Please sign in to comment.