Skip to content

Commit 11c2693

Browse files
authored
feat: allow 0 genesis delay (#383)
1 parent 97a070b commit 11c2693

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

examples/dencun.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ participants:
2525
cl_client_image: ethpandaops/nimbus:unstable-6dee4d5
2626
network_params:
2727
deneb_fork_epoch: 1
28-
launch_additional_services: true
2928
additional_services:
3029
- el_forkmon
3130
- tx_spammer

examples/verkle-gen-nethermind.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,26 @@ participants:
33
el_client_image: ethpandaops/geth:gballet-kaustinen-with-shapella-fc8f4b9
44
cl_client_type: lighthouse
55
cl_client_image: ethpandaops/lighthouse:verkle-trees-capella-2ffb8a9
6-
count: 2
6+
- el_client_type: geth
7+
el_client_image: ethpandaops/geth:gballet-kaustinen-with-shapella-fc8f4b9
8+
cl_client_type: lodestar
9+
cl_client_image: ethpandaops/lodestar:g11tech-verge-815364b
710
- el_client_type: nethermind
8-
el_client_image: nethermindeth/nethermind:kaustinen
11+
el_client_image: nethermindeth/nethermind:kaustinen-648c6b8
912
cl_client_type: lodestar
1013
cl_client_image: ethpandaops/lodestar:g11tech-verge-815364b
1114
validator_count: 0
15+
el_client_log_level: "debug"
1216
- el_client_type: nethermind
13-
el_client_image: nethermindeth/nethermind:kaustinen
17+
el_client_image: nethermindeth/nethermind:kaustinen-648c6b8
1418
cl_client_type: lodestar
1519
cl_client_image: ethpandaops/lodestar:g11tech-verge-815364b
1620
validator_count: 0
21+
el_client_log_level: "debug"
1722
network_params:
1823
electra_fork_epoch: 0
19-
seconds_per_slot: 3
24+
genesis_delay: 0
25+
seconds_per_slot: 8
2026
additional_services:
2127
- el_forkmon
2228
- tx_spammer

src/package_io/input_parser.star

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,6 @@ def parse_network_params(input_args):
323323
if result["network_params"]["seconds_per_slot"] == 0:
324324
fail("seconds_per_slot is 0 needs to be > 0 ")
325325

326-
if result["network_params"]["genesis_delay"] == 0:
327-
fail("genesis_delay is 0 needs to be > 0 ")
328-
329326
if result["network_params"]["deneb_fork_epoch"] == 0:
330327
fail("deneb_fork_epoch is 0 needs to be > 0 ")
331328

0 commit comments

Comments
 (0)