From 37ac2e86ae23513633c5b1b24b2c75a1c65cc0a5 Mon Sep 17 00:00:00 2001 From: Mikhail Wall Date: Fri, 14 Feb 2025 19:21:42 +0100 Subject: [PATCH] fix: updated entrypoint min gas price --- geth-poa/entrypoint.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/geth-poa/entrypoint.sh b/geth-poa/entrypoint.sh index 53415f869dd1..679b3ff62e0c 100644 --- a/geth-poa/entrypoint.sh +++ b/geth-poa/entrypoint.sh @@ -132,7 +132,8 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then "$NAT_FLAG" \ --txpool.accountqueue=512 \ --rpc.allow-unprotected-txs \ - --miner.gasprice=1000000000 \ + --miner.gasprice=50000000 \ + --txpool.pricelimit=50000000 \ --gpo.maxprice=500000000000 \ elif [ "$GETH_NODE_TYPE" = "signer" ]; then @@ -185,7 +186,8 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then --authrpc.port="8551" \ --authrpc.vhosts="*" \ --txpool.accountqueue=512 \ - --miner.gasprice=1000000000 \ + --miner.gasprice=50000000 \ + --txpool.pricelimit=50000000 \ --gpo.maxprice=500000000000 \ "$NAT_FLAG" @@ -232,7 +234,8 @@ elif [ "$GETH_NODE_TYPE" = "member" ]; then --authrpc.port="8551" \ --authrpc.vhosts="*" \ --txpool.accountqueue=512 \ - --miner.gasprice=1000000000 \ + --miner.gasprice=50000000 \ + --txpool.pricelimit=50000000 \ --gpo.maxprice=500000000000 \ "$NAT_FLAG" elif [ "$GETH_NODE_TYPE" = "archive" ]; then @@ -277,7 +280,8 @@ elif [ "$GETH_NODE_TYPE" = "archive" ]; then --authrpc.port="8551" \ --authrpc.vhosts="*" \ --txpool.accountqueue=512 \ - --miner.gasprice=1000000000 \ + --miner.gasprice=50000000 \ + --txpool.pricelimit=50000000 \ --gpo.maxprice=500000000000 \ "$NAT_FLAG" else