Skip to content

Commit

Permalink
fix: repair supervisor->node cnx (#127)
Browse files Browse the repository at this point in the history
This change is a workaround, considering that the http fallback should
work, but it's probably a better default anyway.

Main issue is tracked at:
ethereum-optimism/optimism#13624
  • Loading branch information
sigma authored Jan 8, 2025
1 parent ae515ea commit 6d6c96e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interop/op-supervisor/op_supervisor_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_supervisor_config(
"OP_SUPERVISOR_L1_RPC": l1_config_env_vars["L1_RPC_URL"],
"OP_SUPERVISOR_L2_CONSENSUS_NODES": ",".join(
[
"http://{0}:{1}".format(
"ws://{0}:{1}".format(
participant.cl_context.ip_addr,
interop_constants.INTEROP_WS_PORT_NUM,
)
Expand Down

0 comments on commit 6d6c96e

Please sign in to comment.