diff --git a/params/config.go b/params/config.go index b18b69b99cb2..741d3dade0aa 100644 --- a/params/config.go +++ b/params/config.go @@ -332,7 +332,7 @@ var ( DarwinV2Time: newUint64(1724832000), EuclidTime: newUint64(1741680000), EuclidV2Time: newUint64(1741852800), - FeynmanTime: nil, + FeynmanTime: newUint64(1753167600), Clique: &CliqueConfig{ Period: 3, Epoch: 30000, diff --git a/params/version.go b/params/version.go index ce0a0c834af7..dc939fa77110 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 = 8 // Minor version component of the current release - VersionPatch = 69 // Patch version component of the current release + VersionPatch = 70 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )