Skip to content

Commit

Permalink
Fix FR env name (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev authored Sep 26, 2024
1 parent 28d3973 commit 5d5a19c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion beacon-chain/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MEVBOOST_FLAG_KEYS="--builder-endpoint"
. /etc/profile

ENGINE_URL="http://execution.${NETWORK}.staker.dappnode:8551"
VALID_FEE_RECIPIENT=$(get_valid_fee_recipient "${FEE_RECIPIENT}")
VALID_FEE_RECIPIENT=$(get_valid_fee_recipient "${FEE_RECIPIENT_ADDRESS}")
MEVBOOST_FLAG=$(get_mevboost_flag "${NETWORK}" "${MEVBOOST_FLAG_KEYS}")

if [ -n "${CHECKPOINT_SYNC_URL}" ]; then
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
DATA_DIR: /opt/teku/data
environment:
CHECKPOINT_SYNC_URL: ""
FEE_RECIPIENT: ""
FEE_RECIPIENT_ADDRESS: ""
EXTRA_OPTS: ""
JAVA_OPTS: "-Xmx6g"
restart: unless-stopped
Expand All @@ -26,7 +26,7 @@ services:
LOG_LEVEL: INFO
GRAFFITI: validating_from_DAppNode
EXTRA_OPTS: ""
FEE_RECIPIENT: ""
FEE_RECIPIENT_ADDRESS: ""
JAVA_OPTS: "-Xmx6g"
restart: unless-stopped
security_opt:
Expand Down
2 changes: 1 addition & 1 deletion setup-wizard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fields:
- id: feeRecipientAddress
target:
type: environment
name: FEE_RECIPIENT
name: FEE_RECIPIENT_ADDRESS
service: [validator, beacon-chain]
title: Fee Recipient Address
description: >-
Expand Down
2 changes: 1 addition & 1 deletion validator/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ CLIENT="teku"
. /etc/profile

VALID_GRAFFITI=$(get_valid_graffiti "${GRAFFITI}")
VALID_FEE_RECIPIENT=$(get_valid_fee_recipient "${FEE_RECIPIENT}")
VALID_FEE_RECIPIENT=$(get_valid_fee_recipient "${FEE_RECIPIENT_ADDRESS}")
SIGNER_API_URL=$(get_signer_api_url "${NETWORK}" "${SUPPORTED_NETWORKS}")
BEACON_API_URL=$(get_beacon_api_url "${NETWORK}" "${SUPPORTED_NETWORKS}" "${CLIENT}")
MEVBOOST_FLAGS=$(get_mevboost_flag "${NETWORK}" "${MEVBOOST_FLAG_KEYS}" "${SKIP_MEVBOOST_URL}")
Expand Down

0 comments on commit 5d5a19c

Please sign in to comment.