From be1267ced5ebfd84737fb1869cab18ff5096455a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Thu, 10 Jun 2021 09:07:03 +0300 Subject: [PATCH] eth/ethconfig: bump the RPC gas cap to 50M, since 1559 exceeds 25 --- 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 b1f8e52e0..349c8da6c 100644 --- a/eth/ethconfig/config.go +++ b/eth/ethconfig/config.go @@ -85,7 +85,7 @@ var Defaults = Config{ Recommit: 3 * time.Second, }, TxPool: core.DefaultTxPoolConfig, - RPCGasCap: 25000000, + RPCGasCap: 50000000, GPO: FullNodeGPO, RPCTxFeeCap: 1, // 1 ether }