From ca9287452fb9746c288f2f6d607adb5382960535 Mon Sep 17 00:00:00 2001 From: "allen.wu" Date: Fri, 13 Mar 2026 18:38:22 +0800 Subject: [PATCH] fix: set ETHEREUM_TARGET_VERSION to correct Go pseudo-version morph-v2.2.0 is a git tag name, not a valid Go module version. The update_mod sed pattern (v[0-9][^[:space:]]*) cannot match it, so future `make update` runs would silently skip go-ethereum version replacement. Set it to the actual pseudo-version that corresponds to the morph-v2.2.0 tag commit (62952ec7d188). ETHEREUM_SUBMODULE_COMMIT_OR_TAG remains morph-v2.2.0 as it is only used for git checkout, not Go module resolution. Co-Authored-By: Claude Opus 4.6 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5aebed54..447e4b47 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ################## update dependencies #################### ETHEREUM_SUBMODULE_COMMIT_OR_TAG := morph-v2.2.0 -ETHEREUM_TARGET_VERSION := morph-v2.2.0 +ETHEREUM_TARGET_VERSION := v1.10.14-0.20260313031710-62952ec7d188 TENDERMINT_TARGET_VERSION := v0.3.4