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

Commit 1591d67

Browse files
authored
Merge pull request #522 from keep-network/max-gas-price
DefaultMaxGasPrice updated to 70Gwei
2 parents 6a31575 + 2e60184 commit 1591d67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configs/config.toml.SAMPLE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# allowed gas price is reached, no further resubmission attempts are
1919
# performed.
2020
#
21-
# MaxGasPrice = 50000000000 # 50 gwei (default value)
21+
# MaxGasPrice = 70000000000 # 70 gwei (default value)
2222

2323
[ethereum.account]
2424
KeyFile = "/Users/someuser/ethereum/data/keystore/UTC--2018-03-11T01-37-33.202765887Z--AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAA"

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(50000000000) // 50 Gwei
31+
DefaultMaxGasPrice = big.NewInt(70000000000) // 70 Gwei
3232
)
3333

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

0 commit comments

Comments
 (0)