Skip to content

Commit

Permalink
HOTFIX: Upgrade go-ethereum version (#165)
Browse files Browse the repository at this point in the history
* Upgrade go-ethereum version

* Revert CI changes
  • Loading branch information
Lohann authored Aug 18, 2023
1 parent f50f196 commit addcc66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chains/ethereum/config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub fn config(network: &str) -> Result<BlockchainConfig> {
currency_symbol: "ETH",
currency_decimals: 18,
node_uri: NodeUri::parse("http://127.0.0.1:8545")?,
node_image: "ethereum/client-go:v1.10.26",
node_image: "ethereum/client-go:v1.12.2",
node_command: Arc::new(|network, port| {
let mut params = if network == "dev" {
vec![
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
- "bitcoin-volume:/home/bitcoin/.bitcoin"

ethereum:
image: "ethereum/client-go:v1.10.26"
image: "ethereum/client-go:v1.12.2"
command: "--dev --ipcdisable --http --http.addr 0.0.0.0 --http.vhosts * --http.api eth,debug,admin,txpool,web3"
expose:
- "8545"
Expand Down
2 changes: 1 addition & 1 deletion scripts/pull_nodes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
set -e

docker image pull ruimarinho/bitcoin-core:23
docker image pull ethereum/client-go:v1.10.26
docker image pull ethereum/client-go:v1.12.2
docker image pull parity/polkadot:v1.0.0
docker image pull staketechnologies/astar-collator:v5.15.0

0 comments on commit addcc66

Please sign in to comment.