Fix testnet script (#8557)

Fix an issue where a kurtosis testnet script was failing because no supernodes were provided


```
There was an error interpreting Starlark code
Evaluation error: fail: Fulu fork is enabled (epoch: 0) but no supernodes are configured, no nodes have 128 or more validators, and perfect_peerdas_enabled is not enabled. Either configure a supernode, ensure at least one node has 128+ validators, or enable perfect_peerdas_enabled in network_params with 16 participants.
at [github.com/ethpandaops/ethereum-package/main.star:83:57]: run
at [github.com/ethpandaops/ethereum-package/src/package_io/input_parser.star:377:17]: input_parser
at [0:0]: fail
```


  


Co-Authored-By: Eitan Seri-Levi <eserilev@ucsc.edu>

Co-Authored-By: Pawan Dhananjay <pawandhananjay@gmail.com>
This commit is contained in:
Eitan Seri-Levi
2025-12-11 03:56:51 -03:00
committed by GitHub
parent f3fd1f210b
commit d9ddb72f5b
3 changed files with 4 additions and 5 deletions

View File

@@ -6,15 +6,14 @@ participants:
# nodes without validators, used for testing sync.
- cl_type: lighthouse
cl_image: lighthouse:local
supernode: true # no supernode in Electra, this is for future proof
validator_count: 0
- cl_type: lighthouse
cl_image: lighthouse:local
supernode: false
validator_count: 0
network_params:
seconds_per_slot: 6
electra_fork_epoch: 0
fulu_fork_epoch: 100000 # a really big number so this test stays in electra
preset: "minimal"
additional_services:
- tx_fuzz

View File

@@ -21,8 +21,7 @@ participants:
validator_count: 0
network_params:
seconds_per_slot: 6
electra_fork_epoch: 0
fulu_fork_epoch: 1
fulu_fork_epoch: 0
preset: "minimal"
additional_services:
- tx_fuzz

View File

@@ -6,9 +6,10 @@ participants:
cl_image: lighthouse:local
cl_extra_params:
- --target-peers=3
supernode: true
count: 4
network_params:
electra_fork_epoch: 0
fulu_fork_epoch: 0
seconds_per_slot: 3
num_validator_keys_per_node: 20
global_log_level: debug