Skip to content

Commit

Permalink
Fix head assertion csv data
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Feb 14, 2024
1 parent 0550032 commit 91abfc2
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions packages/cli/test/sim/multi_fork.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const {estimatedTimeoutMs, forkConfig} = defineSimTestConfig({
BELLATRIX_FORK_EPOCH: bellatrixForkEpoch,
CAPELLA_FORK_EPOCH: capellaForkEpoch,
runTillEpoch: runTillEpoch + syncWaitEpoch,
initialNodes: 5,
initialNodes: 2,
});

const env = await SimulationEnvironment.initWithDefaults(
Expand Down Expand Up @@ -76,40 +76,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},
]
);

Expand Down

0 comments on commit 91abfc2

Please sign in to comment.