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

Commit e7348b6

Browse files
authored
Merge pull request #728 from keep-network/default-max-gas-price-hotfix
Increased default max gas price to 1000 Gwei
2 parents 56b4f55 + 4e06376 commit e7348b6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

configs/config.toml.SAMPLE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# performed.A value can be provided in `wei`, `Gwei` or `ether`, e.g.
2020
# `800.5 Gwei`.
2121
#
22-
# MaxGasPrice = "500 Gwei" # 500 Gwei (default value)
22+
# MaxGasPrice = "1000 Gwei" # 1000 Gwei (default value)
2323
#
2424
# Uncomment to enable Ethereum node rate limiting. Both properties can be
2525
# used together or separately.

pkg/chain/ethereum/connect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var (
2828
// gas price can not be higher than the max gas price value. If the maximum
2929
// allowed gas price is reached, no further resubmission attempts are
3030
// performed. This value can be overwritten in the configuration file.
31-
DefaultMaxGasPrice = big.NewInt(500000000000) // 500 Gwei
31+
DefaultMaxGasPrice = big.NewInt(1000000000000) // 1000 Gwei
3232
)
3333

3434
// EthereumChain is an implementation of ethereum blockchain interface.

0 commit comments

Comments
 (0)