From 3f5fe0e3875f7e56be709e853efdaf58855d68ab Mon Sep 17 00:00:00 2001 From: Krishna Upadhyaya Date: Mon, 30 May 2022 13:59:30 +0530 Subject: [PATCH] Increased default value of rpc.txfeecap to 5 --- 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 9f64b09ac5..cb0c5a0aae 100644 --- a/eth/ethconfig/config.go +++ b/eth/ethconfig/config.go @@ -94,7 +94,7 @@ var Defaults = Config{ RPCGasCap: 50000000, RPCEVMTimeout: 5 * time.Second, GPO: FullNodeGPO, - RPCTxFeeCap: 1, // 1 ether + RPCTxFeeCap: 5, // 5 matic } func init() {