Skip to content

Commit

Permalink
fix(action.yaml): change lighthouse jwt secret key to 0xaaaaa
Browse files Browse the repository at this point in the history
The previous secret key was a placeholder and is now updated to a
more realistic value.
  • Loading branch information
samcm committed Feb 22, 2025
1 parent e336796 commit 1c631b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/checkpoint-sync/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ runs:
if: ${{ inputs.consensus == 'lighthouse' }}
run: |
echo "Starting Lighthouse...";
docker run -p 5052:5052 --network eth -d --name beacon sigp/lighthouse:latest lighthouse bn --network=${{ inputs.network }} --datadir=/data --checkpoint-sync-url=http://checkpointz:5555 --http --http-address=0.0.0.0 --execution-endpoint=http://localhost:8545 --execution-jwt-secret-key=example-secret
docker run -p 5052:5052 --network eth -d --name beacon sigp/lighthouse:latest lighthouse bn --network=${{ inputs.network }} --datadir=/data --checkpoint-sync-url=http://checkpointz:5555 --http --http-address=0.0.0.0 --execution-endpoint=http://localhost:8545 --execution-jwt-secret-key=0xaaaaa
echo "Lighthouse is running.";
- name: Run prysm
shell: bash
Expand Down

0 comments on commit 1c631b4

Please sign in to comment.