Skip to content

Commit

Permalink
Update entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
kant777 authored Jan 13, 2024
1 parent 72f3e6c commit bca8f13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions geth-poa/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then
--pprof.port=60601 \
--nodekey $GETH_DATA_DIR/boot.key \
--netrestrict $NET_RESTRICT \
$NAT_FLAG \
"$NAT_FLAG" \
--txpool.accountqueue=512 \
--rpc.allow-unprotected-txs

Expand Down Expand Up @@ -136,7 +136,7 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then
--authrpc.port="8551" \
--authrpc.vhosts="*" \
--txpool.accountqueue=512 \
$NAT_FLAG
"$NAT_FLAG"

elif [ "$GETH_NODE_TYPE" = "member" ]; then
echo "Starting member node"
Expand Down Expand Up @@ -174,7 +174,7 @@ elif [ "$GETH_NODE_TYPE" = "member" ]; then
--authrpc.port="8551" \
--authrpc.vhosts="*" \
--txpool.accountqueue=512 \
$NAT_FLAG
"$NAT_FLAG"
else
echo "Invalid GETH_NODE_TYPE specified"
fi

0 comments on commit bca8f13

Please sign in to comment.