From 0a93016ef41f2c4fb76530b06f9693056a9d9ce1 Mon Sep 17 00:00:00 2001 From: Nico Flaig Date: Wed, 15 Jan 2025 14:02:08 +0000 Subject: [PATCH] chore: update lighthouse to latest unstable version in sim tests (#7364) * chore: update lighthouse to latest unstable version * Remove unsupported CLI flags * Update to deposit_contract_block.txt * Update to deposit_contract_block.txt for validator --- .env.test | 2 +- .../cli/test/utils/crucible/clients/beacon/lighthouse.ts | 6 +----- .../cli/test/utils/crucible/clients/validator/lighthouse.ts | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.env.test b/.env.test index 9d3b289a5151..6eb7ab17a4df 100644 --- a/.env.test +++ b/.env.test @@ -4,7 +4,7 @@ GETH_DOCKER_IMAGE=ethereum/client-go:v1.13.14 # Use either image or local binary for the testing GETH_BINARY_DIR= -LIGHTHOUSE_DOCKER_IMAGE=sigp/lighthouse:v5.1.1-amd64-modern-dev +LIGHTHOUSE_DOCKER_IMAGE=sigp/lighthouse:latest-amd64-unstable # We can't upgrade nethermind further due to genesis hash mismatch with the geth # https://github.com/NethermindEth/nethermind/issues/6683 diff --git a/packages/cli/test/utils/crucible/clients/beacon/lighthouse.ts b/packages/cli/test/utils/crucible/clients/beacon/lighthouse.ts index 725c08389105..4716e8538c3e 100644 --- a/packages/cli/test/utils/crucible/clients/beacon/lighthouse.ts +++ b/packages/cli/test/utils/crucible/clients/beacon/lighthouse.ts @@ -29,10 +29,6 @@ export const generateLighthouseBeaconNode: BeaconNodeGenerator { await writeFile(path.join(rootDir, "config.yaml"), yaml.dump(chainConfigToJson(forkConfig))); - await writeFile(path.join(rootDir, "deploy_block.txt"), "0"); + await writeFile(path.join(rootDir, "deposit_contract_block.txt"), "0"); }, cli: { command: isDocker ? "lighthouse" : (process.env.LIGHTHOUSE_BINARY_PATH as string), diff --git a/packages/cli/test/utils/crucible/clients/validator/lighthouse.ts b/packages/cli/test/utils/crucible/clients/validator/lighthouse.ts index a5f137a861d5..8f5ab64caffb 100644 --- a/packages/cli/test/utils/crucible/clients/validator/lighthouse.ts +++ b/packages/cli/test/utils/crucible/clients/validator/lighthouse.ts @@ -65,7 +65,7 @@ export const generateLighthouseValidatorNode: ValidatorNodeGenerator