diff options
author | Ted Yin <[email protected]> | 2020-09-15 14:45:06 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-15 14:45:06 -0400 |
commit | c90548b4e062d309395f9a6cc0873ef03bb58d0d (patch) | |
tree | 6b81c09e458df25e53cfeff70e1909ec1e55ddba /plugin | |
parent | 8ea2f6ef629136b746e5fb245f0804422223c976 (diff) | |
parent | dd6b0315849e2383e715e9c0ade50aaca68435f0 (diff) |
Merge pull request #21 from ava-labs/TS_bump_fee
TWEAK: Bump fee to 470 nAVAX per gas.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/evm/vm.go | 2 |
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 |