Skip to content

Commit

Permalink
Update deprecated CLI flags
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Jan 29, 2024
1 parent a714d77 commit b21e489
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lodestar-cl-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
- 0.0.0.0
- --execution.urls
- ${EL_NODE}
- --jwt-secret
- --jwtSecret
- /var/lib/lodestar/consensus/ee-secret/jwtsecret
- --targetPeers
- ${CL_MIN_PEER_COUNT:-50}
Expand Down
4 changes: 2 additions & 2 deletions lodestar-vc-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ services:
- voluntary-exit
- --dataDir
- /var/lib/lodestar/validators
- --server
- --beaconNodes
- ${CL_NODE:-http://consensus:5052}
- --logLevel
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
Expand Down
6 changes: 3 additions & 3 deletions lodestar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ services:
- 0.0.0.0
- --execution.urls
- ${EL_NODE}
- --jwt-secret
- --jwtSecret
- /var/lib/lodestar/consensus/ee-secret/jwtsecret
- --targetPeers
- ${CL_MAX_PEER_COUNT:-50}
Expand Down Expand Up @@ -163,9 +163,9 @@ services:
- voluntary-exit
- --dataDir
- /var/lib/lodestar/validators
- --server
- --beaconNodes
- http://consensus:5052
- --logLevel
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
Expand Down
2 changes: 1 addition & 1 deletion lodestar/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fi

# Check whether we should use MEV Boost
if [ "${MEV_BOOST}" = "true" ]; then
__mev_boost="--builder --builder.urls=${MEV_NODE:-http://mev-boost:18550}"
__mev_boost="--builder --builder.url=${MEV_NODE:-http://mev-boost:18550}"
echo "MEV Boost enabled"
else
__mev_boost=""
Expand Down

0 comments on commit b21e489

Please sign in to comment.