From 99d9cbe865f8545cda3d7cf18f7ab6a7923adfd2 Mon Sep 17 00:00:00 2001 From: "fletcher.fan" Date: Wed, 17 Dec 2025 11:52:59 +0800 Subject: [PATCH 1/2] set emerald fork time --- params/config.go | 2 ++ params/version.go | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/params/config.go b/params/config.go index 91b88bc16..3207decfd 100644 --- a/params/config.go +++ b/params/config.go @@ -316,6 +316,7 @@ var ( CurieBlock: big.NewInt(0), Morph203Time: NewUint64(0), ViridianTime: NewUint64(1761544800), + EmeraldTime: NewUint64(1766988000), TerminalTotalDifficulty: big.NewInt(0), Morph: MorphConfig{ UseZktrie: true, @@ -346,6 +347,7 @@ var ( CurieBlock: big.NewInt(0), Morph203Time: NewUint64(1747029600), ViridianTime: NewUint64(1762149600), + EmeraldTime: NewUint64(1767765600), TerminalTotalDifficulty: big.NewInt(0), Morph: MorphConfig{ UseZktrie: true, diff --git a/params/version.go b/params/version.go index 78bb7a392..52f3e5153 100644 --- a/params/version.go +++ b/params/version.go @@ -23,8 +23,8 @@ import ( const ( VersionMajor = 2 // Major version component of the current release - VersionMinor = 0 // Minor version component of the current release - VersionPatch = 8 // Patch version component of the current release + VersionMinor = 1 // Minor 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 ) From 859c7c8f189846246a17240f7136c2f82438ba68 Mon Sep 17 00:00:00 2001 From: "fletcher.fan" Date: Wed, 17 Dec 2025 11:53:27 +0800 Subject: [PATCH 2/2] set Dockerfile golang to 1.24 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 78ecc7026..671eb6b72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG VERSION="" ARG BUILDNUM="" # Build Geth in a stock Go builder container -FROM golang:1.21-alpine as builder +FROM golang:1.24-alpine as builder RUN apk add --no-cache gcc musl-dev linux-headers git