Skip to content

Commit

Permalink
Fix FR env name
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev committed Sep 26, 2024
1 parent 407c55a commit 8377185
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 @@ -13,7 +13,7 @@ if [ "$NETWORK" = "sepolia" ]; then
ENGINE_URL="http://sepolia-geth.dappnode:8551"
fi

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_KEY}")

JWT_SECRET=$(get_jwt_secret_by_network "${NETWORK}")
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
environment:
CHECKPOINT_SYNC_URL: ""
EXTRA_OPTS: ""
FEE_RECIPIENT: ""
FEE_RECIPIENT_ADDRESS: ""
VERBOSITY: info
MIN_SYNC_PEERS: "3"
MAX_PEERS: "70"
Expand All @@ -32,7 +32,7 @@ services:
LOG_TYPE: INFO
GRAFFITI: validating_from_DAppNode
EXTRA_OPTS: ""
FEE_RECIPIENT: ""
FEE_RECIPIENT_ADDRESS: ""
VERBOSITY: info
volumes:
beacon-chain-data: {}
Expand Down
2 changes: 1 addition & 1 deletion setup-wizard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fields:
- id: feeRecipientAddress
target:
type: environment
name: FEE_RECIPIENT
name: FEE_RECIPIENT_ADDRESS
service: [beacon-chain, validator]
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 @@ -14,7 +14,7 @@ CLIENT="prysm"
. /etc/profile.d/consensus_tools.sh

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_FLAG=$(get_mevboost_flag "${NETWORK}" "${MEVBOOST_FLAG_KEY}" "${SKIP_MEVBOOST_URL}")
Expand Down

0 comments on commit 8377185

Please sign in to comment.