We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e3b0bc commit ac57152Copy full SHA for ac57152
1 file changed
pkg/chain/ethereum/config.go
@@ -39,8 +39,16 @@ type Config struct {
39
40
Account Account
41
42
+ // MiningCheckInterval is the interval in which transaction
43
+ // mining status is checked. If the transaction is not mined within this
44
+ // time, the gas price is increased and transaction is resubmitted.
45
MiningCheckInterval int
46
47
+ // MaxGasPrice specifies the maximum gas price the client is
48
+ // willing to pay for the transaction to be mined. The offered transaction
49
+ // gas price can not be higher than the max gas price value. If the maximum
50
+ // allowed gas price is reached, no further resubmission attempts are
51
+ // performed.
52
MaxGasPrice uint64
53
}
54
0 commit comments