From 123ba02db55542c8fb7d1575de6572c3d470cae9 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Thu, 15 Feb 2024 15:39:37 +0100 Subject: [PATCH] Enable all nodes --- packages/cli/test/sim/multi_fork.test.ts | 68 ++++++++++++------------ 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/packages/cli/test/sim/multi_fork.test.ts b/packages/cli/test/sim/multi_fork.test.ts index 74be62546ad4..3299282ed6a6 100644 --- a/packages/cli/test/sim/multi_fork.test.ts +++ b/packages/cli/test/sim/multi_fork.test.ts @@ -78,40 +78,40 @@ const env = await SimulationEnvironment.initWithDefaults( keysCount: 32, remote: true, }, - // { - // id: "node-3", - // beacon: BeaconClient.Lodestar, - // validator: { - // type: ValidatorClient.Lodestar, - // options: { - // // this builder selection will make it use produceBlockV2 and respond with full block - // clientOptions: { - // useProduceBlockV3: false, - // "builder.selection": "executiononly", - // }, - // }, - // }, - // execution: ExecutionClient.Nethermind, - // keysCount: 32, - // }, - // { - // id: "node-4", - // beacon: BeaconClient.Lodestar, - // validator: { - // type: ValidatorClient.Lodestar, - // options: { - // // this builder selection will make it use produceBlindedBlockV2 and respond with blinded version - // // of local block and subsequent publishing via publishBlindedBlock - // clientOptions: { - // useProduceBlockV3: false, - // "builder.selection": "maxprofit", - // }, - // }, - // }, - // execution: ExecutionClient.Nethermind, - // keysCount: 32, - // }, - // {id: "node-5", beacon: BeaconClient.Lighthouse, execution: ExecutionClient.Geth, keysCount: 32}, + { + id: "node-3", + beacon: BeaconClient.Lodestar, + validator: { + type: ValidatorClient.Lodestar, + options: { + // this builder selection will make it use produceBlockV2 and respond with full block + clientOptions: { + useProduceBlockV3: false, + "builder.selection": "executiononly", + }, + }, + }, + execution: ExecutionClient.Nethermind, + keysCount: 32, + }, + { + id: "node-4", + beacon: BeaconClient.Lodestar, + validator: { + type: ValidatorClient.Lodestar, + options: { + // this builder selection will make it use produceBlindedBlockV2 and respond with blinded version + // of local block and subsequent publishing via publishBlindedBlock + clientOptions: { + useProduceBlockV3: false, + "builder.selection": "maxprofit", + }, + }, + }, + execution: ExecutionClient.Nethermind, + keysCount: 32, + }, + {id: "node-5", beacon: BeaconClient.Lighthouse, execution: ExecutionClient.Geth, keysCount: 32}, ] );