Skip to content

Commit

Permalink
fix: sets op-node sequencer/verifier confs to 2/1
Browse files Browse the repository at this point in the history
  • Loading branch information
zhwrd committed Jan 23, 2025
1 parent edb9ce2 commit 3ed2c87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cl/hildr/hildr_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def get_beacon_config(
"labels": ethereum_package_shared_utils.label_maker(
client=constants.CL_TYPE.op_node,
client_type=constants.CLIENT_TYPES.cl,
image=participant.cl_image[-constants.MAX_LABEL_LENGTH :],
image=util.label_from_image(participant.cl_image),
connected_client=el_context.client_name,
extra_labels=participant.cl_extra_labels,
),
Expand Down
4 changes: 2 additions & 2 deletions src/cl/op-node/op_node_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def get_beacon_config(
"op-node",
"--l2={0}".format(EXECUTION_ENGINE_ENDPOINT),
"--l2.jwt-secret=" + ethereum_package_constants.JWT_MOUNT_PATH_ON_CONTAINER,
"--verifier.l1-confs=4",
"--verifier.l1-confs=1",
"--rollup.config="
+ "{0}/rollup-{1}.json".format(
ethereum_package_constants.GENESIS_DATA_MOUNTPOINT_ON_CLIENTS,
Expand Down Expand Up @@ -252,7 +252,7 @@ def get_beacon_config(
cmd += [
"--p2p.sequencer.key=" + sequencer_private_key,
"--sequencer.enabled",
"--sequencer.l1-confs=5",
"--sequencer.l1-confs=2",
]

if len(existing_cl_clients) > 0:
Expand Down

0 comments on commit 3ed2c87

Please sign in to comment.