diff options
Diffstat (limited to 'src/mempool/event_watcher.ts')
-rw-r--r-- | src/mempool/event_watcher.ts | 3 |
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; |