We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb0fc69 commit c38bff9Copy full SHA for c38bff9
src/package_io/parse_input.star
@@ -15,6 +15,7 @@ DEFAULT_CL_IMAGES = {
15
16
BESU_NODE_NAME = "besu"
17
NETHERMIND_NODE_NAME = "nethermind"
18
+NIMBUS_NODE_NAME = "nimbus"
19
20
ATTR_TO_BE_SKIPPED_AT_ROOT = ("network_params", "participants")
21
@@ -52,6 +53,9 @@ def parse_input(input_args):
52
53
if index == 0 and el_client_type in (BESU_NODE_NAME, NETHERMIND_NODE_NAME):
54
fail("besu/nethermind cant be the first participant")
55
56
+ if cl_client_type in (NIMBUS_NODE_NAME) and (result["network_params"]["seconds_per_slot"] < 12):
57
+ fail("nimbus can't be run with slot times below 12 seconds")
58
+
59
el_image = participant["el_client_image"]
60
if el_image == "":
61
default_image = DEFAULT_EL_IMAGES.get(el_client_type, "")
0 commit comments