You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -269,21 +267,10 @@ out-of-sync. Only applicable if `FinalityTagEnabled=true`
269
267
270
268
Set to zero to disable.
271
269
272
-
### TxMinimumWaitTimeForConfirmation
273
-
```toml
274
-
TxMinimumWaitTimeForConfirmation = '60s'# Default
275
-
```
276
-
TxMinimumWaitTimeForConfirmation minimum time to wait for a TX to get into a block in the blockchain. This is used for the EVMService.SubmitTransaction operation. It won't check for TX status updates until this time passes
TxMaximumWaitTimeForConfirmation time after TxMinimumWaitTimeForConfirmation to wait for a TX to get into a block. After TxMinimumWaitTimeForConfirmation the operation will check every 100 milliseconds to see if the TX gets into a block and will do it for no longer than TxMaximumWaitTimeForConfirmation. Total wait time will be TxMinimumWaitTimeForConfirmation + TxMaximumWaitTimeForConfirmation
Copy file name to clipboardExpand all lines: pkg/config/config.go
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -51,10 +51,8 @@ type EVM interface {
51
51
NodeNoNewHeadsThreshold() time.Duration
52
52
FinalizedBlockOffset() uint32
53
53
NoNewFinalizedHeadsThreshold() time.Duration
54
-
// Applies to EVMService. This is the minimum amount of time it takes a TX to get confirmed in the chain. When submitting transaction and waiting for TX confirmation we will wait for at least this amount of time before checking confirmation.
55
-
TxMinimumWaitTimeForConfirmation() time.Duration
56
-
// Applies to EVMService. This is the maximum amount of time we will wait for a TX to get confirmed in the chain. This duration is added to the TxMinimumWaitTimeForConfiguration parameter to the total time we will wait for a TX to be confirmed.
57
-
TxMaximumWaitTimeForConfirmation() time.Duration
54
+
// Applies to EVMService. This is the maximum amount of time we will wait for a TX to get confirmed in the chain.
0 commit comments