Skip to content

Commit

Permalink
fix: errors
Browse files Browse the repository at this point in the history
  • Loading branch information
serezhaolshan committed Nov 23, 2024
1 parent f60d3d9 commit 965ca02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/watcher/watcher.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class WatcherService {
])
);
}
await Promise.all(deletions);
await Promise.allSettled(deletions);
}

async watcherCallback(id: string, items: { address: string, txHash: string }[]) {
Expand Down Expand Up @@ -290,7 +290,7 @@ export class WatcherService {
]);
});

await Promise.all(notifications);
await Promise.allSettled(notifications);
}

async subscribeToExplorer() {
Expand Down

0 comments on commit 965ca02

Please sign in to comment.