test: decrease the number of nodes spawn (#353)

Decrease the number of Ethereum nodes being spawn when launching the
network locally.

It is not needed to have several nodes to be able to produce blocks only
one EL, CL and validator works fine. This will save some resources.
Unfortunately it doesn't reduce the time to setup by a significant
amount.

---------

Co-authored-by: Steve Degosserie <723552+stiiifff@users.noreply.github.com>
This commit is contained in:
undercover-cactus 2025-12-18 14:34:45 +01:00 committed by GitHub
parent 67f375860b
commit f922ec73f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 8 deletions

View file

@ -2,7 +2,7 @@ participants:
- el_type: reth
el_image: ghcr.io/paradigmxyz/reth:v1.9.3
cl_type: lodestar
count: 2
count: 1
additional_services:
- dora

View file

@ -10,13 +10,7 @@ export const DOCKER_NETWORK_NAME = "datahaven-net";
/**
* The base services that are always launched when Kurtosis is used.
*/
export const KURTOSIS_BASE_SERVICES = [
"cl-1-lodestar-reth",
"cl-2-lodestar-reth",
"el-1-reth-lodestar",
"el-2-reth-lodestar",
"dora"
];
export const KURTOSIS_BASE_SERVICES = ["cl-1-lodestar-reth", "el-1-reth-lodestar", "dora"];
export const COMPONENTS = {
datahaven: {