mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
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:
parent
67f375860b
commit
f922ec73f4
2 changed files with 2 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue