From 99c274facb2f60aa1f28b15557aa3861f17b9c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Wed, 16 Jul 2025 10:00:12 +0200 Subject: [PATCH] feat: schedule Feynman upgrade on Scroll Sepolia --- params/config.go | 2 +- params/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/params/config.go b/params/config.go index b18b69b99cb..741d3dade0a 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 ce0a0c834af..dc939fa7711 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 )