We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a93091 commit fc667c2Copy full SHA for fc667c2
Sources/web3swift/Transaction/TransactionPollingTask.swift
@@ -11,9 +11,9 @@ import Web3Core
11
final public class TransactionPollingTask {
12
13
private enum DelayUnit: UInt64 {
14
- case shortest = 1
15
- case medium = 5
16
- case longest = 60
+ case shortest = 1_500_000_000
+ case medium = 2_500_000_000
+ case longest = 9_000_000_000
17
18
func shouldIncreaseDelay(_ startTime: Date) -> Bool {
19
let timePassed = Date().timeIntervalSince1970 - startTime.timeIntervalSince1970
0 commit comments