From adc5f59e441cf99d05c96805b8be781c8fdda070 Mon Sep 17 00:00:00 2001 From: alok Date: Thu, 14 Dec 2023 14:51:36 +0530 Subject: [PATCH] Increase txpool account queue --- geth-poa/entrypoint.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/geth-poa/entrypoint.sh b/geth-poa/entrypoint.sh index 321befbb76..ac07e618d0 100644 --- a/geth-poa/entrypoint.sh +++ b/geth-poa/entrypoint.sh @@ -76,6 +76,7 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then --nodekey $GETH_DATA_DIR/boot.key \ --netrestrict 172.29.0.0/16 \ --nat extip:$NODE_IP \ + --txpool.accountqueue=512 \ --rpc.allow-unprotected-txs elif [ "$GETH_NODE_TYPE" = "signer" ]; then @@ -105,8 +106,8 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then --nousb \ --netrestrict 172.29.0.0/16 \ --metrics \ - --metrics.addr=0.0.0.0 \ - --metrics.port=6060 \ + --metrics.addr=0.0.0.0 \ + --metrics.port=6060 \ --ws \ --ws.addr=0.0.0.0 \ --ws.port="$WS_PORT" \ @@ -116,6 +117,7 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then --authrpc.addr="0.0.0.0" \ --authrpc.port="8551" \ --authrpc.vhosts="*" \ + --txpool.accountqueue=512 \ --nat extip:$NODE_IP else echo "Invalid GETH_NODE_TYPE specified"