Skip to content

Commit 9e979dd

Browse files
committed
Bring back LIGHTHOUSE_CHECKPOINT_SYNC_URL
1 parent f88aaa9 commit 9e979dd

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.env.sample.holesky

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker
4343
# CL beacon node host exposed ports.
4444
#CL_PORT_P2P=
4545

46-
# Checkpoint sync url used by lighthouse to fast sync.
47-
CL_CHECKPOINT_SYNC_URL=https://checkpoint-sync.holesky.ethpandaops.io/
46+
# Lighthouse becon node checkpoint sync URL used by consensus layer to fast sync.
47+
LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.holesky.ethpandaops.io/
4848

4949
# In certain cases, beacon nodes produce blocks with unexpected fee recipients. Setting the Lido execution
5050
# layer rewards vault as the suggested fee recipient reduces this risk.

.env.sample.hoodi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker
4343
# CL beacon node host exposed ports.
4444
#CL_PORT_P2P=
4545

46-
# Checkpoint sync url used by lighthouse to fast sync.
47-
CL_CHECKPOINT_SYNC_URL=https://checkpoint-sync.hoodi.ethpandaops.io
46+
# Lighthouse becon node checkpoint sync URL used by consensus layer to fast sync.
47+
LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.hoodi.ethpandaops.io
4848

4949
# In certain cases, beacon nodes produce blocks with unexpected fee recipients. Setting the Lido execution
5050
# layer rewards vault as the suggested fee recipient reduces this risk.

.env.sample.mainnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker
4343
# CL beacon node host exposed ports.
4444
#CL_PORT_P2P=
4545

46-
# Checkpoint sync url used by lighthouse to fast sync.
47-
CL_CHECKPOINT_SYNC_URL=https://mainnet.checkpoint.sigp.io/
46+
# Lighthouse becon node checkpoint sync URL used by consensus layer to fast sync.
47+
LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://mainnet.checkpoint.sigp.io/
4848

4949
# In certain cases, beacon nodes produce blocks with unexpected fee recipients. Setting the Lido execution
5050
# layer rewards vault as the suggested fee recipient reduces this risk.

compose-cl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- --metrics
2727
- --metrics-port=5054
2828
- --metrics-address=0.0.0.0
29-
- --checkpoint-sync-url=${CL_CHECKPOINT_SYNC_URL}
29+
- --checkpoint-sync-url=${LIGHTHOUSE_CHECKPOINT_SYNC_URL}
3030
- --builder-url=http://${MEV}:18550
3131
ports:
3232
- ${CL_PORT_P2P:-9000}:9000 # P2P TCP+UDP
@@ -51,7 +51,7 @@ services:
5151
command: |
5252
lighthouse bn
5353
--network=${NETWORK}
54-
--checkpoint-sync-url=${CL_CHECKPOINT_SYNC_URL}
54+
--checkpoint-sync-url=${LIGHTHOUSE_CHECKPOINT_SYNC_URL}
5555
--checkpoint-sync-url-timeout=600
5656
--execution-endpoint=http://${EL}:8551
5757
--execution-jwt=/opt/jwt/jwt.hex

0 commit comments

Comments
 (0)