Skip to content

Commit c3ecee8

Browse files
authored
fix: lighthouse minimal image (#915)
1 parent 998063f commit c3ecee8

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.github/tests/minimal.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ participants:
66
- el_type: erigon
77
cl_type: nimbus
88
cl_image: ethpandaops/nimbus-eth2:unstable-minimal
9-
# TODO: Re-add lighthouse once its working with minimal preset
10-
# - el_type: besu
11-
# cl_type: lighthouse
12-
# cl_image: sigp/lighthouse:v6.0.1
9+
- el_type: besu
10+
cl_type: lighthouse
1311
- el_type: reth
1412
cl_type: lodestar
1513
# TODO: Re-add grandine once its working with minimal preset

.github/tests/mix-with-tools.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ additional_services:
2222
- prometheus_grafana
2323
- spamoor_blob
2424
- custom_flood
25-
- blobscan
2625
- dugtrio
2726
- blutgang
2827
- apache

src/cl/lighthouse/lighthouse_launcher.star

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,6 @@ def get_beacon_config(
224224
"--http",
225225
"--http-address=0.0.0.0",
226226
"--http-port={0}".format(BEACON_HTTP_PORT_NUM),
227-
"--slots-per-restore-point={0}".format(32 if constants.ARCHIVE_MODE else 8192),
228227
# NOTE: This comes from:
229228
# https://github.com/sigp/lighthouse/blob/7c88f582d955537f7ffff9b2c879dcf5bf80ce13/scripts/local_testnet/beacon_node.sh
230229
# and the option says it's "useful for testing in smaller networks" (unclear what happens in larger networks)

src/package_io/input_parser.star

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ DEFAULT_CL_IMAGES = {
2626
}
2727

2828
DEFAULT_CL_IMAGES_MINIMAL = {
29-
"lighthouse": "ethpandaops/lighthouse:stable",
29+
"lighthouse": "ethpandaops/lighthouse:unstable",
3030
"teku": "consensys/teku:latest",
3131
"nimbus": "ethpandaops/nimbus-eth2:stable-minimal",
3232
"prysm": "ethpandaops/prysm-beacon-chain:develop-minimal",
@@ -45,7 +45,7 @@ DEFAULT_VC_IMAGES = {
4545
}
4646

4747
DEFAULT_VC_IMAGES_MINIMAL = {
48-
"lighthouse": "ethpandaops/lighthouse:stable",
48+
"lighthouse": "ethpandaops/lighthouse:unstable",
4949
"lodestar": "chainsafe/lodestar:latest",
5050
"nimbus": "ethpandaops/nimbus-validator-client:stable-minimal",
5151
"prysm": "ethpandaops/prysm-validator:develop-minimal",

0 commit comments

Comments
 (0)