aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Smith <tylersmith.me@gmail.com>2020-09-14 13:53:39 -0700
committerTyler Smith <tylersmith.me@gmail.com>2020-09-14 13:53:39 -0700
commitdd6b0315849e2383e715e9c0ade50aaca68435f0 (patch)
tree52c5f2cda68bc80243a79df6e67ba3a80bc3d746
parent14592f971162fed59a33afd98020599097406cdf (diff)
TWEAK: Bump fee to 470 nAVAX per gas.
-rw-r--r--plugin/evm/vm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go
index b0073da..1f26101 100644
--- a/plugin/evm/vm.go
+++ b/plugin/evm/vm.go
@@ -83,7 +83,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