aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Yin <tederminant@gmail.com>2020-09-15 14:45:06 -0400
committerGitHub <noreply@github.com>2020-09-15 14:45:06 -0400
commitc90548b4e062d309395f9a6cc0873ef03bb58d0d (patch)
tree6b81c09e458df25e53cfeff70e1909ec1e55ddba
parent8ea2f6ef629136b746e5fb245f0804422223c976 (diff)
parentdd6b0315849e2383e715e9c0ade50aaca68435f0 (diff)
Merge pull request #21 from ava-labs/TS_bump_fee
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 a1224d4..6a3fcd5 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