aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mempool/event_watcher.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mempool/event_watcher.ts b/src/mempool/event_watcher.ts
index 27f0c8207..ac07badfe 100644
--- a/src/mempool/event_watcher.ts
+++ b/src/mempool/event_watcher.ts
@@ -22,7 +22,8 @@ export class EventWatcher {
public subscribe(callback: MempoolEventCallback): void {
this._callbackAsync = callback;
this._intervalId = intervalUtils.setAsyncExcludingInterval(
- this._pollForMempoolEventsAsync.bind(this), this._pollingIntervalMs);
+ this._pollForMempoolEventsAsync.bind(this), this._pollingIntervalMs,
+ );
}
public unsubscribe(): void {
delete this._callbackAsync;