Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Revert "Double quote to prevent globbing and word splitting"
Browse files Browse the repository at this point in the history
This reverts commit 970d9de.
  • Loading branch information
nflaig committed Nov 17, 2024
1 parent 3475df5 commit dbbe284
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions beacon-chain/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,22 @@ if [ -n "$_DAPPNODE_GLOBAL_MEVBOOST_MAINNET" ] && [ "$_DAPPNODE_GLOBAL_MEVBOOST_
fi
fi

exec node --max-old-space-size="${MEMORY_LIMIT}" /usr/app/node_modules/.bin/lodestar \
exec node --max-old-space-size=${MEMORY_LIMIT} /usr/app/node_modules/.bin/lodestar \
beacon \
--network=mainnet \
--suggestedFeeRecipient="${FEE_RECIPIENT_ADDRESS}" \
--suggestedFeeRecipient=${FEE_RECIPIENT_ADDRESS} \
--jwt-secret=/jwtsecret \
--execution.urls="${HTTP_ENGINE}" \
--execution.urls=$HTTP_ENGINE \
--dataDir=/var/lib/data \
--rest \
--rest.address 0.0.0.0 \
--rest.port "${BEACON_API_PORT}" \
--port "${P2P_PORT}" \
--rest.port ${BEACON_API_PORT} \
--port $P2P_PORT \
--metrics \
--metrics.port 8008 \
--metrics.address 0.0.0.0 \
--logFile /var/lib/data/beacon.log \
--logLevel="${DEBUG_LEVEL}" \
--logLevel=${DEBUG_LEVEL} \
--logFileLevel=debug \
--logFileDailyRotate 5 \
"${EXTRA_OPTS}"
$EXTRA_OPTS
12 changes: 6 additions & 6 deletions validator/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LANG=$oLang LC_ALL=$oLcAll
exec node /usr/app/node_modules/.bin/lodestar \
validator \
--network=mainnet \
--suggestedFeeRecipient="${FEE_RECIPIENT_ADDRESS}" \
--suggestedFeeRecipient=${FEE_RECIPIENT_ADDRESS} \
--graffiti="${graffitiString}" \
--dataDir=/var/lib/data \
--keymanager true \
Expand All @@ -25,13 +25,13 @@ exec node /usr/app/node_modules/.bin/lodestar \
--metrics \
--metrics.port 5064 \
--metrics.address 0.0.0.0 \
--externalSigner.url="${HTTP_WEB3SIGNER}" \
--doppelgangerProtection="${DOPPELGANGER_PROTECTION}" \
--beaconNodes="${BEACON_NODE_ADDR}" \
--externalSigner.url=${HTTP_WEB3SIGNER} \
--doppelgangerProtection=${DOPPELGANGER_PROTECTION} \
--beaconNodes=${BEACON_NODE_ADDR} \
--http.requestWireFormat=ssz \
--blindedLocal true \
--logLevel="${DEBUG_LEVEL}" \
--logLevel=${DEBUG_LEVEL} \
--logFileLevel=debug \
--logFileDailyRotate 5 \
--logFile /var/lib/data/validator.log \
"${EXTRA_OPTS}"
$EXTRA_OPTS

0 comments on commit dbbe284

Please sign in to comment.