Skip to content

Commit 80f9f79

Browse files
committed
Increase timouts
1 parent e3fc291 commit 80f9f79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/modules/check/connect.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ function connect(
2626

2727
setTimeout(() => {
2828
if (address === null) {
29-
// if prom isn't resolving after 250ms, then stop waiting
29+
// if prom isn't resolving after 500ms, then stop waiting
3030
resolve()
3131
}
32-
}, 250)
32+
}, 500)
3333
})
3434
}
3535
}

src/modules/check/network.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ function network(
2929

3030
setTimeout(() => {
3131
if (network === null) {
32-
// if prom isn't resolving after 250ms, then stop waiting
32+
// if prom isn't resolving after 500ms, then stop waiting
3333
resolve()
3434
}
35-
}, 250)
35+
}, 500)
3636
})
3737
}
3838
}

0 commit comments

Comments
 (0)