Skip to content

Commit

Permalink
chore: update geth
Browse files Browse the repository at this point in the history
  • Loading branch information
Vid201 committed Oct 8, 2024
1 parent 9252858 commit ceca4a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/install_geth.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eo pipefail

# install geth

GETH_VERSION="1.14.8-a9523b64"
GETH_VERSION="1.14.11-f3c696fa"

wget -c "https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-$GETH_VERSION.tar.gz"
tar -xf "geth-linux-amd64-$GETH_VERSION.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ For more information: <https://hackmd.io/@Vid201/aa-bundler-rust>
Rust version: 1.81.0

1. `libclang-dev`, `pkg-config` and `libssl-dev` on Debian/Ubuntu.
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.
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.11](https://github.com/ethereum/go-ethereum/releases/tag/v1.14.11)); so you need to install [Geth](https://geth.ethereum.org/docs/getting-started/installing-geth) for running tests.
3. [`solc`](https://docs.soliditylang.org/en/v0.8.27/installing-solidity.html).
4. [`cargo-sort`](https://crates.io/crates/cargo-sort) and [`cargo-udeps`](https://crates.io/crates/cargo-udeps).

Expand Down
4 changes: 2 additions & 2 deletions bundler-spec-tests/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
geth-dev:
image: ethereum/client-go:v1.14.8
image: ethereum/client-go:v1.14.11
healthcheck:
test: [ "CMD-SHELL", "geth attach --exec eth.blockNumber" ]
interval: 10s
Expand Down Expand Up @@ -28,7 +28,7 @@ services:
- --mine
- --verbosity=2
fund-signer:
image: ethereum/client-go:v1.14.8
image: ethereum/client-go:v1.14.11
entrypoint: 'geth --exec "eth.sendTransaction({from: eth.accounts[0], to: \"0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266\", value: web3.toWei(10000, \"ether\")})" attach http://geth-dev:8545'
depends_on:
geth-dev:
Expand Down

0 comments on commit ceca4a6

Please sign in to comment.