geth init fixes when genesis available. and that fixes reth too

This commit is contained in:
goldsquid
2026-06-07 12:58:54 +07:00
parent 4b03b4cdbc
commit 2a194909da
82 changed files with 895 additions and 145 deletions

View File

@@ -55,7 +55,7 @@ services:
- GETH_OVERRIDE_TAIGA=1746612311
- GETH_ROLLUP_DISABLETXPOOLGOSSIP=true
- GETH_ROLLUP_SEQUENCERHTTP=https://sequencer.blast.io
entrypoint: /bin/sh -c '[ ! -d /data/geth ] && geth --db.engine=pebble --gcmode=archive --datadir /data init --state.scheme=hash /config/genesis.json; exec geth "$@"' --
entrypoint: /bin/sh -c '[ -f /config/genesis.json ] && geth --db.engine=pebble --gcmode=archive --datadir /data init --state.scheme=hash /config/genesis.json; exec geth "$@"' --
command:
- --datadir=/data
- --db.engine=pebble