Skip to content

Commit c12506b

Browse files
fix: registration flags when using beacon node only (ethereum#618)
The flag `--validators-builder-registration-default-enabled` must be used when VC/BN are combined. Otherwise validators won't be registered.
1 parent b395189 commit c12506b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/package_io/input_parser.star

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -938,6 +938,9 @@ def enrich_mev_extra_params(parsed_arguments_dict, mev_prefix, mev_port, mev_typ
938938
participant["cl_extra_params"].append(
939939
"--builder-endpoint={0}".format(mev_url)
940940
)
941+
participant["cl_extra_params"].append(
942+
"--validators-builder-registration-default-enabled=true"
943+
)
941944
if participant["cl_type"] == "prysm":
942945
participant["vc_extra_params"].append("--enable-builder")
943946
participant["cl_extra_params"].append(

0 commit comments

Comments
 (0)