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 38ccf25 commit 3eec305Copy full SHA for 3eec305
packages/client/lib/service/ethereumservice.ts
@@ -17,7 +17,7 @@ export interface EthereumServiceOptions extends ServiceOptions {
17
/* Sync retry interval in ms (default: 8000) */
18
interval?: number
19
20
- /* Protocol timeout in ms (default: 4000) */
+ /* Protocol timeout in ms (default: 6000) */
21
timeout?: number
22
}
23
@@ -42,7 +42,7 @@ export class EthereumService extends Service {
42
this.flow = new FlowControl()
43
this.chain = options.chain ?? new Chain(options)
44
this.interval = options.interval ?? 8000
45
- this.timeout = options.timeout ?? 4000
+ this.timeout = options.timeout ?? 6000
46
47
48
/**
0 commit comments