From 37c055adfb9b440d4848ae64e7a7b0dd3ab8aba8 Mon Sep 17 00:00:00 2001 From: Determinant Date: Sun, 20 Sep 2020 14:42:34 -0400 Subject: raise the RPC tx fee cap to 100 AVAX --- plugin/evm/vm.go | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index 52e4acf..13d4d3f 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -259,6 +259,7 @@ func (vm *VM) Initialize( // Set minimum price for mining and default gas price oracle value to the min // gas price to prevent so transactions and blocks all use the correct fees config.Miner.GasPrice = minGasPrice + config.RPCTxFeeCap = 100 // 100 AVAX config.GPO.Default = minGasPrice config.TxPool.PriceLimit = minGasPrice.Uint64() config.TxPool.NoLocals = true -- cgit v1.2.3