From d6f0d34bba568c1378ce76206726a23d3731804e Mon Sep 17 00:00:00 2001 From: Mikhail Wall Date: Fri, 14 Feb 2025 20:24:01 +0100 Subject: [PATCH] fix: updated entrypoint min gas price (#57) --- 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 53415f869d..679b3ff62e 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