Skip to content

Commit fce899b

Browse files
authored
fix: mev-boost naming scheme change (#428)
1 parent 698305a commit fce899b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/package_io/input_parser.star

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,13 @@ def enrich_disable_peer_scoring(parsed_arguments_dict):
511511
# TODO perhaps clean this up into a map
512512
def enrich_mev_extra_params(parsed_arguments_dict, mev_prefix, mev_port, mev_type):
513513
for index, participant in enumerate(parsed_arguments_dict["participants"]):
514-
mev_url = "http://{0}{1}:{2}".format(mev_prefix, index, mev_port)
514+
mev_url = "http://{0}-{1}-{2}-{3}:{4}".format(
515+
MEV_BOOST_SERVICE_NAME_PREFIX,
516+
index,
517+
participant["cl_client_type"],
518+
participant["el_client_type"],
519+
mev_port,
520+
)
515521

516522
if participant["cl_client_type"] == "lighthouse":
517523
participant["validator_extra_params"].append("--builder-proposals")

0 commit comments

Comments
 (0)