From f922ec73f4f9fd904ec3a0c846a4d82432c1d907 Mon Sep 17 00:00:00 2001 From: undercover-cactus Date: Thu, 18 Dec 2025 14:34:45 +0100 Subject: [PATCH] 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> --- test/configs/kurtosis/minimal.yaml | 2 +- test/launcher/utils/constants.ts | 8 +------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/test/configs/kurtosis/minimal.yaml b/test/configs/kurtosis/minimal.yaml index 28ffef93..12b4d8bb 100644 --- a/test/configs/kurtosis/minimal.yaml +++ b/test/configs/kurtosis/minimal.yaml @@ -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 diff --git a/test/launcher/utils/constants.ts b/test/launcher/utils/constants.ts index 996fbe5a..85cdfc5a 100644 --- a/test/launcher/utils/constants.ts +++ b/test/launcher/utils/constants.ts @@ -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: {