Skip to content

Commit

Permalink
interprets but doesnt run
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y committed Jun 26, 2023
1 parent b578b21 commit cf8e257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/package_io/parse_input.star
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def parse_input(input_args):
if len(result["participants"]) >= 2 and result["participants"][1]["el_client_type"] == NETHERMIND_NODE_NAME:
fail("nethermind can't be the first or second node")

if args.get("mev_type") in ("mock", "full"):
if result.get("mev_type") in ("mock", "full"):
# TODO pass this
result = enrich_mev_extra_params(result, "mev-boost-", 18550)

Expand Down Expand Up @@ -199,4 +199,4 @@ def enrich_mev_extra_params(parsed_arguments_dict, mev_prefix, mev_port):
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))
return parsed_arguments
return parsed_arguments_dict

0 comments on commit cf8e257

Please sign in to comment.