From 45aadcd3117e5b0dbd5cfc018b989a41ab5a3e38 Mon Sep 17 00:00:00 2001 From: Daniel Liu <139250065@qq.com> Date: Fri, 6 Mar 2026 13:52:02 +0800 Subject: [PATCH] build(build): upgrade toolchain to go 1.25.7 (#2115) --- Makefile | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9efb7447cd..78eb8dc4e1 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ .PHONY: XDC evm all test clean GOBIN = $(shell pwd)/build/bin -GO ?= 1.25.1 +GO ?= latest GORUN = go run #? XDC: Build XDC. diff --git a/go.mod b/go.mod index 1cba48340a..48b6ce2e7e 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/XinFinOrg/XDPoSChain go 1.25 -toolchain go1.25.5 +toolchain go1.25.7 require ( github.com/VictoriaMetrics/fastcache v1.12.2