mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 08:53:46 +00:00
Update entrypoint.sh
This commit is contained in:
parent
4390d07b67
commit
e680d3588b
1 changed files with 4 additions and 2 deletions
|
|
@ -99,11 +99,12 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then
|
||||||
elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
||||||
echo "Starting signer node"
|
echo "Starting signer node"
|
||||||
echo "BOOTNODE_ENDPOINT is set to: $BOOTNODE_ENDPOINT"
|
echo "BOOTNODE_ENDPOINT is set to: $BOOTNODE_ENDPOINT"
|
||||||
|
GETH_PORT="${GETH_PORT:-30311}"
|
||||||
|
|
||||||
exec "$GETH_BIN_PATH" \
|
exec "$GETH_BIN_PATH" \
|
||||||
--verbosity="$VERBOSITY" \
|
--verbosity="$VERBOSITY" \
|
||||||
--datadir="$GETH_DATA_DIR" \
|
--datadir="$GETH_DATA_DIR" \
|
||||||
--port 30311 \
|
--port="$GETH_PORT" \
|
||||||
--syncmode=full \
|
--syncmode=full \
|
||||||
--gcmode=full \
|
--gcmode=full \
|
||||||
--state.scheme=path \
|
--state.scheme=path \
|
||||||
|
|
@ -144,11 +145,12 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
||||||
elif [ "$GETH_NODE_TYPE" = "member" ]; then
|
elif [ "$GETH_NODE_TYPE" = "member" ]; then
|
||||||
echo "Starting member node"
|
echo "Starting member node"
|
||||||
echo "BOOTNODE_ENDPOINT is set to: $BOOTNODE_ENDPOINT"
|
echo "BOOTNODE_ENDPOINT is set to: $BOOTNODE_ENDPOINT"
|
||||||
|
GETH_PORT="${GETH_PORT:-30311}"
|
||||||
|
|
||||||
exec "$GETH_BIN_PATH" \
|
exec "$GETH_BIN_PATH" \
|
||||||
--verbosity="$VERBOSITY" \
|
--verbosity="$VERBOSITY" \
|
||||||
--datadir="$GETH_DATA_DIR" \
|
--datadir="$GETH_DATA_DIR" \
|
||||||
--port 30311 \
|
--port="$GETH_PORT" \
|
||||||
--syncmode=full \
|
--syncmode=full \
|
||||||
--gcmode=full \
|
--gcmode=full \
|
||||||
--state.scheme=path \
|
--state.scheme=path \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue