Skip to content

Commit 246955a

Browse files
authored
feat: enable Bernoulli upgrade on Scroll mainnet (#710)
* feat: enable Bernoulli upgrade on Scroll mainnet * Update config.go
1 parent 0252f85 commit 246955a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

params/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ var (
355355
ArrowGlacierBlock: nil,
356356
ArchimedesBlock: big.NewInt(0),
357357
ShanghaiBlock: big.NewInt(0),
358-
BernoulliBlock: nil,
358+
BernoulliBlock: big.NewInt(5220340),
359359
CurieBlock: nil,
360360
Clique: &CliqueConfig{
361361
Period: 3,

params/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323

2424
const (
2525
VersionMajor = 5 // Major version component of the current release
26-
VersionMinor = 2 // Minor version component of the current release
27-
VersionPatch = 6 // Patch version component of the current release
26+
VersionMinor = 3 // Minor version component of the current release
27+
VersionPatch = 0 // Patch version component of the current release
2828
VersionMeta = "mainnet" // Version metadata to append to the version string
2929
)
3030

0 commit comments

Comments
 (0)