From 4825d53865abd6aea7f2056e31063556fba6bc78 Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Fri, 24 May 2024 15:34:58 +0800 Subject: [PATCH] eth/ethconfig: bump the RPC gas cap to 50M, since 1559 exceeds 25 (#23028) --- eth/ethconfig/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/ethconfig/config.go b/eth/ethconfig/config.go index 73cc4e7cddbe..efdd2197d92e 100644 --- a/eth/ethconfig/config.go +++ b/eth/ethconfig/config.go @@ -69,7 +69,7 @@ var Defaults = Config{ GasPrice: big.NewInt(0.25 * params.Shannon), TxPool: core.DefaultTxPoolConfig, - RPCGasCap: 25000000, + RPCGasCap: 50000000, GPO: FullNodeGPO, RPCTxFeeCap: 1, // 1 ether }