From d39852c0cf8112015235e938df16a481e84b9ab0 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Wed, 8 Nov 2017 18:59:40 -0500 Subject: fix styling --- src/mempool/event_watcher.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') 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; -- cgit