Skip to content

Commit

Permalink
fix: registration flags when using beacon node only (#618)
Browse files Browse the repository at this point in the history
The flag `--validators-builder-registration-default-enabled` must be
used when VC/BN are combined. Otherwise validators won't be registered.
  • Loading branch information
lucassaldanha authored May 16, 2024
1 parent b395189 commit c12506b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -938,6 +938,9 @@ def enrich_mev_extra_params(parsed_arguments_dict, mev_prefix, mev_port, mev_typ
participant["cl_extra_params"].append(
"--builder-endpoint={0}".format(mev_url)
)
participant["cl_extra_params"].append(
"--validators-builder-registration-default-enabled=true"
)
if participant["cl_type"] == "prysm":
participant["vc_extra_params"].append("--enable-builder")
participant["cl_extra_params"].append(
Expand Down

0 comments on commit c12506b

Please sign in to comment.