Skip to content

Commit

Permalink
fix: update op-geth hash based storage (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Aug 20, 2024
1 parent e1ce08e commit f0b5b23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/el/op-geth/op_geth_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def get_config(
sequencer_enabled,
sequencer_context,
):
init_datadir_cmd_str = "geth init --datadir={0} {1}".format(
init_datadir_cmd_str = "geth init --datadir={0} --state.scheme=hash {1}".format(
EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER,
constants.GENESIS_CONFIG_MOUNT_PATH_ON_CONTAINER + "/genesis.json",
)
Expand All @@ -160,6 +160,7 @@ def get_config(
# "--verbosity=" + verbosity_level,
"--datadir=" + EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER,
"--gcmode=archive",
"--state.scheme=hash",
"--http",
"--http.addr=0.0.0.0",
"--http.vhosts=*",
Expand Down

0 comments on commit f0b5b23

Please sign in to comment.