Skip to content

Commit

Permalink
Merge pull request #11 from dappnode/pablomendezroyo-patch-1
Browse files Browse the repository at this point in the history
Fix flags use  `grpc` instead of `http`
  • Loading branch information
pablomendezroyo authored Oct 8, 2024
2 parents 9846bd5 + 2a71309 commit 1067cac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions beacon-chain/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ FLAGS="--accept-terms-of-use \
--jwt-secret=$JWT_FILE_PATH \
--execution-endpoint=$ENGINE_URL \
--monitoring-host=0.0.0.0 \
--http-host=0.0.0.0 \
--http-port=$BEACON_API_PORT \
--http-cors-domain=$CORSDOMAIN \
--grpc-gateway-host=0.0.0.0 \
--grpc-gateway-port=$BEACON_API_PORT \
--grpc-gateway-corsdomain=$CORSDOMAIN \
--rpc-host=0.0.0.0 \
--verbosity=$VERBOSITY \
--p2p-tcp-port=$P2P_TCP_PORT \
Expand Down
6 changes: 3 additions & 3 deletions validator/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ FLAGS="--datadir=$DATA_DIR \
--beacon-rpc-provider=$BEACON_RPC_PROVIDER \
--beacon-rpc-gateway-provider=$BEACON_RPC_GATEWAY_PROVIDER \
--validators-external-signer-url=$SIGNER_API_URL \
--http-host=0.0.0.0 \
--http-port=$VALIDATOR_API_PORT \
--http-cors-domain=http://0.0.0.0:$VALIDATOR_API_PORT \
--grpc-gateway-host=0.0.0.0 \
--grpc-gateway-port=$VALIDATOR_API_PORT \
--grpc-gateway-corsdomain=http://0.0.0.0:$VALIDATOR_API_PORT \
--graffiti=$VALID_GRAFFITI \
--suggested-fee-recipient=$VALID_FEE_RECIPIENT \
--verbosity=$VERBOSITY \
Expand Down

0 comments on commit 1067cac

Please sign in to comment.