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 c712beb commit 93f8dedCopy full SHA for 93f8ded
src/common/execution-provider/execution-provider.service.ts
@@ -53,8 +53,8 @@ export class ExecutionProviderService {
53
filter: Filter,
54
eventName: string,
55
serviceName: string,
56
- retryCount = this.configService.get('EL_RETRY_COUNT'),
57
- blockStep = this.configService.get('EL_BLOCK_STEP'),
+ retryCount: number = this.configService.get('EL_RETRY_COUNT'),
+ blockStep: number = this.configService.get('EL_BLOCK_STEP'),
58
): Promise<Log[]> {
59
let logs: Log[] = [];
60
const toBlock =
0 commit comments