Skip to content

Commit

Permalink
fix: disable pbss when gcmode archive set, force hash based init (#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Apr 15, 2024
1 parent 13de3f6 commit 3e1c7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/el/geth/geth_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def get_config(
elif (
"--gcmode archive" in extra_params
): # Disable path based storage scheme archive mode
init_datadir_cmd_str = "geth init --datadir={0} {1}".format(
init_datadir_cmd_str = "geth init --state.scheme=hash --datadir={0} {1}".format(
EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER,
constants.GENESIS_CONFIG_MOUNT_PATH_ON_CONTAINER + "/genesis.json",
)
Expand Down

0 comments on commit 3e1c7a6

Please sign in to comment.