Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Use geth stable #5902

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# Snoop these
# - https://hub.docker.com/r/ethereum/client-go
# - https://github.com/ethereum/go-ethereum/releases
# GETH_VERSION="stable"
GETH_VERSION="v1.10.26"
GETH_VERSION="stable"
# GETH_VERSION="v1.10.26"

# Exit script as soon as a command fails.
set -o errexit
Expand Down
5 changes: 3 additions & 2 deletions scripts/geth.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# Snoop these
# - https://hub.docker.com/r/ethereum/client-go
# - https://github.com/ethereum/go-ethereum/releases
# GETH_VERSION="stable"
GETH_VERSION="v1.10.26"
GETH_VERSION="stable"
# GETH_VERSION="v1.10.26"

docker pull "ethereum/client-go:$GETH_VERSION"

Expand All @@ -28,6 +28,7 @@ CID=$(docker run \
--nodiscover \
--dev \
--dev.period 0 \
--rpc.enabledeprecatedpersonal \
--allow-insecure-unlock \
--preload ./scripts/geth-accounts.js \
console)
Expand Down