fix styling

This commit is contained in:
Fabio Berger
2017-11-08 18:59:40 -05:00
committed by Leonid Logvinov
parent edc0fec808
commit c89eec4261

View File

@@ -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;