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 <claude@stakesquid.eu>
This commit is contained in:
2026-03-27 20:42:06 +00:00
parent aa5386cc0b
commit 4f6c2b5fcd
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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