Skip to content

Commit dae091f

Browse files
authored
ci: update geth tool to v1.14.7 (ethereum-optimism#11410)
* ci: update geth tool to v1.14.7 * ci: temporarily disable L1 geth version check, so L1 geth can be updated * ops-bedrock: explicit hash state.scheme on geth
1 parent 8b636e0 commit dae091f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ jobs:
184184
resource_class: xlarge
185185
steps:
186186
- checkout
187-
- run:
188-
name: "Check L1 geth version"
189-
command: ./ops/scripts/geth-version-checker.sh || (echo "geth version is wrong, update ci-builder"; false)
187+
# - run: # temporarily disabled, to update ci-builder.
188+
# name: "Check L1 geth version"
189+
# command: ./ops/scripts/geth-version-checker.sh || (echo "geth version is wrong, update ci-builder"; false)
190190
- install-contracts-dependencies
191191
- restore_cache:
192192
name: Restore Go modules cache

ops-bedrock/l1-geth-entrypoint.sh

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ if [ ! -d "$GETH_CHAINDATA_DIR" ]; then
1414
echo "Initializing genesis."
1515
geth --verbosity="$VERBOSITY" init \
1616
--datadir="$GETH_DATA_DIR" \
17+
--state.scheme=hash \
1718
"$GENESIS_FILE_PATH"
1819
else
1920
echo "$GETH_CHAINDATA_DIR exists."
@@ -45,6 +46,7 @@ exec geth \
4546
--authrpc.vhosts="*" \
4647
--authrpc.jwtsecret=/config/jwt-secret.txt \
4748
--gcmode=archive \
49+
--state.scheme=hash \
4850
--metrics \
4951
--metrics.addr=0.0.0.0 \
5052
--metrics.port=6060 \

ops-bedrock/l2-op-geth-entrypoint.sh

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ if [ ! -d "$GETH_CHAINDATA_DIR" ]; then
1414
echo "Initializing genesis."
1515
geth --verbosity="$VERBOSITY" init \
1616
--datadir="$GETH_DATA_DIR" \
17+
--state.scheme=hash \
1718
"$GENESIS_FILE_PATH"
1819
else
1920
echo "$GETH_CHAINDATA_DIR exists."
@@ -46,6 +47,7 @@ exec geth \
4647
--authrpc.vhosts="*" \
4748
--authrpc.jwtsecret=/config/jwt-secret.txt \
4849
--gcmode=archive \
50+
--state.scheme=hash \
4951
--metrics \
5052
--metrics.addr=0.0.0.0 \
5153
--metrics.port=6060 \

versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"abigen": "v1.10.25",
33
"foundry": "626221f5ef44b4af950a08e09bd714650d9eb77d",
4-
"geth": "v1.13.14",
4+
"geth": "v1.14.7",
55
"eth2_testnet_genesis": "v0.10.0",
66
"nvm": "v20.9.0",
77
"slither": "0.10.2",

0 commit comments

Comments
 (0)