Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review lodestar cli flags #1721

Merged
merged 2 commits into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
6 changes: 2 additions & 4 deletions lodestar-vc-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ services:
- ${LOG_LEVEL}
- --suggestedFeeRecipient
- ${FEE_RECIPIENT}
- --force
yorickdowne marked this conversation as resolved.
Show resolved Hide resolved
labels:
- metrics.scrape=true
- metrics.path=/metrics
Expand All @@ -91,13 +90,12 @@ services:
- voluntary-exit
- --dataDir
- /var/lib/lodestar/validators
- --server
- --beaconNodes
- ${CL_NODE:-http://consensus:5052}
- --logLevel
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
- --force

validator-keys:
profiles: ["tools"]
Expand Down
8 changes: 3 additions & 5 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 @@ -139,7 +139,6 @@ services:
- ${LOG_LEVEL}
- --suggestedFeeRecipient
- ${FEE_RECIPIENT}
- --force
labels:
- metrics.scrape=true
- metrics.path=/metrics
Expand All @@ -164,13 +163,12 @@ services:
- voluntary-exit
- --dataDir
- /var/lib/lodestar/validators
- --server
- --beaconNodes
- http://consensus:5052
- --logLevel
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
- --force
yorickdowne marked this conversation as resolved.
Show resolved Hide resolved

validator-keys:
profiles: ["tools"]
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
Loading