From 4f6c2b5fcdea859bfa64b7c4a180bd1aed1b2cc1 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Fri, 27 Mar 2026 20:42:06 +0000 Subject: [PATCH] fix(zero-gravity): use --syncmode=full for galileo and aristotle geth Snap sync causes a deadlock on fresh nodes: consensus sends a zero finalized block hash at startup which geth rejects, crashing consensus. Full sync processes blocks sequentially from genesis and avoids this. Co-Authored-By: Claude Agent --- .../geth/zero-gravity-aristotle-geth-pruned-pebble-path.yml | 2 +- .../geth/zero-gravity-galileo-geth-pruned-pebble-path.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zero-gravity/geth/zero-gravity-aristotle-geth-pruned-pebble-path.yml b/zero-gravity/geth/zero-gravity-aristotle-geth-pruned-pebble-path.yml index 9111c246..13a738b5 100644 --- a/zero-gravity/geth/zero-gravity-aristotle-geth-pruned-pebble-path.yml +++ b/zero-gravity/geth/zero-gravity-aristotle-geth-pruned-pebble-path.yml @@ -77,7 +77,7 @@ services: - --rpc.gascap=600000000 - --rpc.txfeecap=0 - --state.scheme=path - - --syncmode=snap + - --syncmode=full - --http - --http.addr=0.0.0.0 - --http.api=eth,net,web3,debug,admin,txpool,engine diff --git a/zero-gravity/geth/zero-gravity-galileo-geth-pruned-pebble-path.yml b/zero-gravity/geth/zero-gravity-galileo-geth-pruned-pebble-path.yml index 5e6fd2cd..bf9d2dfc 100644 --- a/zero-gravity/geth/zero-gravity-galileo-geth-pruned-pebble-path.yml +++ b/zero-gravity/geth/zero-gravity-galileo-geth-pruned-pebble-path.yml @@ -76,7 +76,7 @@ services: - --rpc.gascap=600000000 - --rpc.txfeecap=0 - --state.scheme=path - - --syncmode=snap + - --syncmode=full - --http - --http.addr=0.0.0.0 - --http.api=eth,net,web3,debug,admin,txpool,engine