Skip to content

Commit 93f8ded

Browse files
committed
feat: added types
1 parent c712beb commit 93f8ded

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/execution-provider/execution-provider.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ export class ExecutionProviderService {
5353
filter: Filter,
5454
eventName: string,
5555
serviceName: string,
56-
retryCount = this.configService.get('EL_RETRY_COUNT'),
57-
blockStep = this.configService.get('EL_BLOCK_STEP'),
56+
retryCount: number = this.configService.get('EL_RETRY_COUNT'),
57+
blockStep: number = this.configService.get('EL_BLOCK_STEP'),
5858
): Promise<Log[]> {
5959
let logs: Log[] = [];
6060
const toBlock =

0 commit comments

Comments
 (0)