Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #728 from keep-network/default-max-gas-price-hotfix
Browse files Browse the repository at this point in the history
Increased default max gas price to 1000 Gwei
  • Loading branch information
dimpar authored Mar 11, 2021
2 parents 56b4f55 + 4e06376 commit e7348b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configs/config.toml.SAMPLE
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# performed.A value can be provided in `wei`, `Gwei` or `ether`, e.g.
# `800.5 Gwei`.
#
# MaxGasPrice = "500 Gwei" # 500 Gwei (default value)
# MaxGasPrice = "1000 Gwei" # 1000 Gwei (default value)
#
# Uncomment to enable Ethereum node rate limiting. Both properties can be
# used together or separately.
Expand Down
2 changes: 1 addition & 1 deletion pkg/chain/ethereum/connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var (
// gas price can not be higher than the max gas price value. If the maximum
// allowed gas price is reached, no further resubmission attempts are
// performed. This value can be overwritten in the configuration file.
DefaultMaxGasPrice = big.NewInt(500000000000) // 500 Gwei
DefaultMaxGasPrice = big.NewInt(1000000000000) // 1000 Gwei
)

// EthereumChain is an implementation of ethereum blockchain interface.
Expand Down

0 comments on commit e7348b6

Please sign in to comment.