From fafe77cddc3105fd1ad29c15f129331ff9729a62 Mon Sep 17 00:00:00 2001 From: Mihir Wadekar Date: Mon, 27 Apr 2026 16:22:12 -0700 Subject: [PATCH 1/2] fix: default CLIENT to reth in .env The default .env ships CLIENT=geth, which combined with USE_BASE_CONSENSUS=true crash-loops on a clean checkout. This contradicts the README (reth is documented as default) and the Azul migration guide (geth + base-consensus is unsupported). Change the CLIENT fallback from geth to reth so that a clean checkout works out of the box. Fixes #1010 --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index f250d81a..f4ea7b66 100644 --- a/.env +++ b/.env @@ -1,3 +1,3 @@ -CLIENT=${CLIENT:-geth} +CLIENT=${CLIENT:-reth} HOST_DATA_DIR=./${CLIENT}-data USE_BASE_CONSENSUS=true From dd9ef9fad156c75551a8940497b1c9e76194504c Mon Sep 17 00:00:00 2001 From: Serhat Dolmac Date: Sun, 12 Apr 2026 17:03:02 +0300 Subject: [PATCH 2/2] fix: update default client from geth to reth in docker-compose.yml --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 83d2c4c1..9eda3317 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ services: execution: build: context: . - dockerfile: ${CLIENT:-geth}/Dockerfile + dockerfile: ${CLIENT:-reth}/Dockerfile restart: unless-stopped ports: - "8545:8545" # RPC @@ -20,7 +20,7 @@ services: node: build: context: . - dockerfile: ${CLIENT:-geth}/Dockerfile + dockerfile: ${CLIENT:-reth}/Dockerfile restart: unless-stopped depends_on: - execution