mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-12 15:03:45 +00:00
Increase txpool account queue
This commit is contained in:
parent
8c8dce5438
commit
adc5f59e44
1 changed files with 4 additions and 2 deletions
|
|
@ -76,6 +76,7 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then
|
||||||
--nodekey $GETH_DATA_DIR/boot.key \
|
--nodekey $GETH_DATA_DIR/boot.key \
|
||||||
--netrestrict 172.29.0.0/16 \
|
--netrestrict 172.29.0.0/16 \
|
||||||
--nat extip:$NODE_IP \
|
--nat extip:$NODE_IP \
|
||||||
|
--txpool.accountqueue=512 \
|
||||||
--rpc.allow-unprotected-txs
|
--rpc.allow-unprotected-txs
|
||||||
|
|
||||||
elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
||||||
|
|
@ -105,8 +106,8 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
||||||
--nousb \
|
--nousb \
|
||||||
--netrestrict 172.29.0.0/16 \
|
--netrestrict 172.29.0.0/16 \
|
||||||
--metrics \
|
--metrics \
|
||||||
--metrics.addr=0.0.0.0 \
|
--metrics.addr=0.0.0.0 \
|
||||||
--metrics.port=6060 \
|
--metrics.port=6060 \
|
||||||
--ws \
|
--ws \
|
||||||
--ws.addr=0.0.0.0 \
|
--ws.addr=0.0.0.0 \
|
||||||
--ws.port="$WS_PORT" \
|
--ws.port="$WS_PORT" \
|
||||||
|
|
@ -116,6 +117,7 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
||||||
--authrpc.addr="0.0.0.0" \
|
--authrpc.addr="0.0.0.0" \
|
||||||
--authrpc.port="8551" \
|
--authrpc.port="8551" \
|
||||||
--authrpc.vhosts="*" \
|
--authrpc.vhosts="*" \
|
||||||
|
--txpool.accountqueue=512 \
|
||||||
--nat extip:$NODE_IP
|
--nat extip:$NODE_IP
|
||||||
else
|
else
|
||||||
echo "Invalid GETH_NODE_TYPE specified"
|
echo "Invalid GETH_NODE_TYPE specified"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue