diff --git a/params/config.go b/params/config.go index f5314b7d0d1..a131a6ff09b 100644 --- a/params/config.go +++ b/params/config.go @@ -333,6 +333,7 @@ var ( EuclidTime: newUint64(1741680000), EuclidV2Time: newUint64(1741852800), FeynmanTime: newUint64(1753167600), + GalileoTime: newUint64(1764054000), Clique: &CliqueConfig{ Period: 3, Epoch: 30000, diff --git a/params/version.go b/params/version.go index b97b9061980..b5cbf04cc30 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 5 // Major version component of the current release VersionMinor = 9 // Minor version component of the current release - VersionPatch = 12 // Patch version component of the current release + VersionPatch = 13 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )