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 fbeb478 commit a392025Copy full SHA for a392025
CHANGELOG.md
@@ -10,6 +10,7 @@ Changes:
10
11
- Fix `entriesPaged` where no `at?: BlockHash` is specified
12
- Apply windcard matches for `democracy::vote::Vote` and `identity::type::Data`
13
+- Adjust default "no RPC response" timeout to 60s
14
15
16
## 8.0.2 Apr 11, 2022
packages/rpc-provider/src/ws/index.ts
@@ -42,7 +42,7 @@ const ALIASES: { [index: string]: string } = {
42
43
const RETRY_DELAY = 2_500;
44
45
-const TIMEOUT_S = 30;
+const TIMEOUT_S = 60;
46
const TIMEOUT_MS = TIMEOUT_S * 1000;
47
const TIMEOUT_INTERVAL = 5_000;
48
0 commit comments