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

Commit

Permalink
Merge pull request #3911 from trufflesuite/experiment
Browse files Browse the repository at this point in the history
Update version of Geth used
  • Loading branch information
haltman-at authored Mar 8, 2021
2 parents 5113c58 + b5af571 commit e76bcb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions scripts/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ run_geth() {
-p 8545:8545 \
-p 8546:8546 \
-p 30303:30303 \
ethereum/client-go:stable \
ethereum/client-go:v1.9.25 \
--rpc \
--rpcaddr '0.0.0.0' \
--rpcport 8545 \
Expand Down Expand Up @@ -40,7 +40,7 @@ if [ "$INTEGRATION" = true ]; then
elif [ "$GETH" = true ]; then

sudo apt install -y jq
docker pull ethereum/client-go:stable
docker pull ethereum/client-go:v1.9.25
run_geth
sleep 30
lerna run --scope truffle test --stream -- --exit
Expand Down
7 changes: 2 additions & 5 deletions scripts/geth.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
#!/usr/bin/env bash

docker pull ethereum/client-go:stable
docker pull ethereum/client-go:v1.9.25

docker run \
-v /$PWD/scripts:/scripts \
-i \
-p 8545:8545 \
-p 8546:8546 \
-p 30303:30303 \
ethereum/client-go:stable \
ethereum/client-go:v1.9.25 \
--rpc \
--rpcaddr '0.0.0.0' \
--rpcport 8545 \
--rpccorsdomain '*' \
--ws \
--wsaddr '0.0.0.0' \
--wsorigins '*' \
--nodiscover \
--dev \
--dev.period 0 \
--allow-insecure-unlock \
--targetgaslimit '7000000' \
js ./scripts/geth-accounts.js

0 comments on commit e76bcb2

Please sign in to comment.