aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugin/evm/vm.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go
index a30a58f..9ab4781 100644
--- a/plugin/evm/vm.go
+++ b/plugin/evm/vm.go
@@ -87,7 +87,7 @@ const (
var (
// minGasPrice is the number of nAVAX required per gas unit for a transaction
// to be valid, measured in wei
- minGasPrice = big.NewInt(47 * params.GWei)
+ minGasPrice = big.NewInt(470 * params.GWei)
txFee = units.MilliAvax
@@ -251,6 +251,7 @@ func (vm *VM) Initialize(
config.Miner.GasPrice = minGasPrice
config.GPO.Default = minGasPrice
config.TxPool.PriceLimit = minGasPrice.Uint64()
+ config.TxPool.NoLocals = true
if err := config.SetGCMode("archive"); err != nil {
panic(err)