diff options
author | Ted Yin <[email protected]> | 2020-09-20 16:08:07 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-20 16:08:07 -0400 |
commit | e233062dfde3ac938b937c860bc96caf57a7fe3f (patch) | |
tree | 0c4878ab45c8420506c7c0d6ee27534c5f3789ad /params | |
parent | 9284f6d1193247adfaa29025934a3514a46188a3 (diff) | |
parent | 99a0be028ab8df4bc6028f9a105e131a8984a599 (diff) |
Merge pull request #38 from ava-labs/gas-estimate
Fix handling of requests for pending block
Diffstat (limited to 'params')
-rw-r--r-- | params/protocol_params.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/params/protocol_params.go b/params/protocol_params.go index cbd036b..3536c83 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -150,4 +150,8 @@ var ( GenesisDifficulty = big.NewInt(131072) // Difficulty of the Genesis block. MinimumDifficulty = big.NewInt(131072) // The minimum that the difficulty may ever be. DurationLimit = big.NewInt(13) // The decision boundary on the blocktime duration used to determine whether difficulty should go up or not. + + // MinGasPrice is the number of nAVAX required per gas unit for a transaction + // to be valid, measured in wei + MinGasPrice = big.NewInt(470 * GWei) ) |