Skip to content

Commit

Permalink
fix: pass right mev-boost url to teku (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y committed Aug 24, 2023
1 parent 29296cd commit 8bb75d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package_io/parse_input.star
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def enrich_mev_extra_params(parsed_arguments_dict, mev_prefix, mev_port):
participant["beacon_extra_params"].append("--payload-builder-uris={0}".format(mev_url))
if participant["cl_client_type"] == "teku":
participant["beacon_extra_params"].append("--validators-builder-registration-default-enabled=true")
participant["beacon_extra_params"].append("--builder-endpoint=".format(mev_url))
participant["beacon_extra_params"].append("--builder-endpoint={0}".format(mev_url))
if participant["cl_client_type"] == "prysm":
participant["validator_extra_params"].append("--enable-builder")
participant["beacon_extra_params"].append("--http-mev-relay={0}".format(mev_url))
Expand Down

0 comments on commit 8bb75d9

Please sign in to comment.