From 5182ab6bd46fe4c4c1d1786e95c5300c648adebe Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Wed, 26 Aug 2026 03:14:14 +0000 Subject: [PATCH] Fix abcore mainnet: wire client_version to build arg and use equals form for --config flag - Fix ABCORE_MAINNET_GETH_VERSION default from empty to v1.13.15-abcore-1.2 - Fix command flag from '--config /config/config.toml' to '--config=/config/config.toml' Both issues caused first-deploy failures on rpc-de-32: 1. Empty version default caused curl exit 22 on binary download 2. Space-separated flag/value caused geth crash-loop with 'flag provided but not defined: -config' Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- abcore/geth/abcore-mainnet-geth-pruned-pebble-path.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/abcore/geth/abcore-mainnet-geth-pruned-pebble-path.yml b/abcore/geth/abcore-mainnet-geth-pruned-pebble-path.yml index 458f0e71..d841f071 100644 --- a/abcore/geth/abcore-mainnet-geth-pruned-pebble-path.yml +++ b/abcore/geth/abcore-mainnet-geth-pruned-pebble-path.yml @@ -37,7 +37,7 @@ services: context: ./abcore dockerfile: abcore.Dockerfile args: - ABCORE_MAINNET_GETH_VERSION: ${ABCORE_MAINNET_GETH_VERSION:-} + ABCORE_MAINNET_GETH_VERSION: ${ABCORE_MAINNET_GETH_VERSION:-v1.13.15-abcore-1.2} sysctls: # TCP Performance net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle @@ -62,7 +62,7 @@ services: - CHAIN_NAME=mainnet entrypoint: [/usr/local/bin/init.sh] command: - - --config /config/config.toml + - --config=/config/config.toml - --datadir=/root/.ethereum - --db.engine=pebble - --gcmode=full