Skip to content

Commit 7f69b4f

Browse files
committed
chore: update geth
1 parent e3c6b49 commit 7f69b4f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/scripts/install_geth.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -eo pipefail
44

55
# install geth
66

7-
GETH_VERSION="1.12.0-e501b3b0"
7+
GETH_VERSION="1.14.8-a9523b64"
88

99
wget -c "https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-$GETH_VERSION.tar.gz"
1010
tar -xf "geth-linux-amd64-$GETH_VERSION.tar.gz"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For more information: <https://hackmd.io/@Vid201/aa-bundler-rust>
2525
Rust version: 1.81.0
2626

2727
1. `libclang-dev`, `pkg-config` and `libssl-dev` on Debian/Ubuntu.
28-
2. Ethereum execution client JSON-RPC API with enabled [`debug_traceCall`](https://geth.ethereum.org/docs/interacting-with-geth/rpc/ns-debug#debug_tracecall). For production, you can use [Geth](https://github.com/ethereum/go-ethereum) or [Erigon](https://github.com/ledgerwatch/erigon). For testing, we are using Geth dev mode (tested with [v1.12.0](https://github.com/ethereum/go-ethereum/releases/tag/v1.12.0)); so you need to install [Geth](https://geth.ethereum.org/docs/getting-started/installing-geth) for running tests.
28+
2. Ethereum execution client JSON-RPC API with enabled [`debug_traceCall`](https://geth.ethereum.org/docs/interacting-with-geth/rpc/ns-debug#debug_tracecall). For production, you can use [Geth](https://github.com/ethereum/go-ethereum) or [Erigon](https://github.com/ledgerwatch/erigon). For testing, we are using Geth dev mode (tested with [v1.14.8](https://github.com/ethereum/go-ethereum/releases/tag/v1.14.8)); so you need to install [Geth](https://geth.ethereum.org/docs/getting-started/installing-geth) for running tests.
2929
3. [`solc`](https://docs.soliditylang.org/en/v0.8.17/installing-solidity.html) >=0.8.12.
3030
4. [`cargo-sort`](https://crates.io/crates/cargo-sort) and [`cargo-udeps`](https://crates.io/crates/cargo-udeps).
3131

bundler-spec-tests/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
geth-dev:
3-
image: ethereum/client-go:release-1.12
3+
image: ethereum/client-go:v1.14.8
44
healthcheck:
55
test: [ "CMD-SHELL", "geth attach --exec eth.blockNumber" ]
66
interval: 10s
@@ -28,7 +28,7 @@ services:
2828
- --mine
2929
- --verbosity=2
3030
fund-signer:
31-
image: ethereum/client-go:release-1.12
31+
image: ethereum/client-go:v1.14.8
3232
entrypoint: 'geth --exec "eth.sendTransaction({from: eth.accounts[0], to: \"0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266\", value: web3.toWei(10000, \"ether\")})" attach http://geth-dev:8545'
3333
depends_on:
3434
geth-dev:

0 commit comments

Comments
 (0)