feat: delay Scroll mainnet Curie block by 6 days (#850)

* feat: delay Scroll mainnet Curie block by 6 days

* update

* update
This commit is contained in:
Péter Garamvölgyi 2024-06-24 11:26:47 +02:00 committed by GitHub
parent 517e5b4b07
commit 7da0bd5480
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -358,7 +358,7 @@ var (
ArchimedesBlock: big.NewInt(0), ArchimedesBlock: big.NewInt(0),
ShanghaiBlock: big.NewInt(0), ShanghaiBlock: big.NewInt(0),
BernoulliBlock: big.NewInt(5220340), BernoulliBlock: big.NewInt(5220340),
CurieBlock: big.NewInt(6924036), CurieBlock: big.NewInt(7096836),
DescartesBlock: nil, DescartesBlock: 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 = 4 // Minor version component of the current release VersionMinor = 5 // Minor version component of the current release
VersionPatch = 8 // 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
) )