aboutsummaryrefslogtreecommitdiff
path: root/params
diff options
context:
space:
mode:
authorAaron Buchwald <aaron.buchwald56@gmail.com>2020-09-20 15:25:50 -0400
committerAaron Buchwald <aaron.buchwald56@gmail.com>2020-09-20 15:25:50 -0400
commit99a0be028ab8df4bc6028f9a105e131a8984a599 (patch)
tree7a6a0f498c584e062a3125a9907d7aaf853241b3 /params
parent98e1e9f1f169fd9c8a4e5a7ca9547c77d923c4fc (diff)
Treat requests for pending block as requests for accepted block
Diffstat (limited to 'params')
-rw-r--r--params/protocol_params.go4
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)
)