Skip to content

Commit

Permalink
fix: use latest geth
Browse files Browse the repository at this point in the history
  • Loading branch information
gzeoneth committed Aug 16, 2024
1 parent d56413c commit b50457a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
- "127.0.0.1:6379:6379"

geth:
image: ethereum/client-go:v1.13.15
image: ethereum/client-go:latest
ports:
- "127.0.0.1:8545:8545"
- "127.0.0.1:8551:8551"
Expand Down Expand Up @@ -78,6 +78,7 @@ services:
- --nodiscover
- --syncmode=full
- --gcmode=archive
- --state.scheme=hash

# Creates a genesis state for the beacon chain using a YAML configuration file and
# a deterministic set of validators
Expand Down
2 changes: 1 addition & 1 deletion test-node.bash
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ if $force_init; then
docker compose run scripts write-prysm-config

echo == Initializing go-ethereum genesis configuration
docker compose run geth init --datadir /datadir/ /config/geth_genesis.json
docker compose run geth init --state.scheme hash --datadir /datadir/ /config/geth_genesis.json

echo == Starting geth
docker compose up --wait geth
Expand Down

0 comments on commit b50457a

Please sign in to comment.