From 29296cd1c78615743d32f68ca50fb51121c5921c Mon Sep 17 00:00:00 2001 From: Barnabas Busa Date: Thu, 24 Aug 2023 15:07:02 +0200 Subject: [PATCH] fix: make besu a bootnode (#146) Changelog picked up from commits here: fix: make besu a bootnode --- src/package_io/parse_input.star | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/package_io/parse_input.star b/src/package_io/parse_input.star index 684998fc3..edef8e657 100644 --- a/src/package_io/parse_input.star +++ b/src/package_io/parse_input.star @@ -14,7 +14,6 @@ DEFAULT_CL_IMAGES = { "lodestar": "chainsafe/lodestar:latest", } -BESU_NODE_NAME = "besu" NETHERMIND_NODE_NAME = "nethermind" NIMBUS_NODE_NAME = "nimbus" @@ -58,9 +57,6 @@ def parse_input(input_args): el_client_type = participant["el_client_type"] cl_client_type = participant["cl_client_type"] - if index == 0 and el_client_type in (BESU_NODE_NAME): - fail("besu cant be the first participant") - if cl_client_type in (NIMBUS_NODE_NAME) and (result["network_params"]["seconds_per_slot"] < 12): fail("nimbus can't be run with slot times below 12 seconds")