feat: delay Curie fork on mainnet by 1 day (#821)

This commit is contained in:
Péter Garamvölgyi 2024-06-12 11:37:36 +02:00 committed by GitHub
parent 0b6cdbdbe2
commit 69aae68b2f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

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

View file

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