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

Commit 4b7e052

Browse files
committed
DefaultMaxGasPrice updated to 70Gwei
Given the current trends of gas prices it makes sense to increase the DefaultMaxGasPrice to 70Gwei. As for today, Etherscan indicates 60Gwei is the safe price and 75Gwei is the proposed price both with ~20 seconds expected mining time of TX.
1 parent 6a31575 commit 4b7e052

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)