Merge pull request #284 from AlexSSD7/master

Bump maximum Gas Price Oracle gas price to 5000 Gwei
This commit is contained in:
Sandeep Sreenath 2022-01-13 14:08:36 +05:30 committed by GitHub
commit 8a3508a41f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ import (
const sampleNumber = 3 // Number of transactions sampled in a block
var (
DefaultMaxPrice = big.NewInt(500 * params.GWei)
DefaultMaxPrice = big.NewInt(5000 * params.GWei)
DefaultIgnorePrice = big.NewInt(2 * params.Wei)
)