From 9f9c3ac8b840e99db942c01505be987d8b2663d4 Mon Sep 17 00:00:00 2001 From: Tyler Smith Date: Mon, 24 Aug 2020 19:27:32 -0700 Subject: TWEAK: Set TxPool PriceLimit to minGas. --- plugin/evm/vm.go | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index 08d7bcb..f656d02 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -241,6 +241,7 @@ func (vm *VM) Initialize( // gas price to prevent so transactions and blocks all use the correct fees config.Miner.GasPrice = minGasPrice config.GPO.Default = minGasPrice + config.TxPool.PriceLimit = minGasPrice.Uint64() if err := config.SetGCMode("archive"); err != nil { panic(err) -- cgit v1.2.3