diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-09 07:59:40 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-10 03:11:46 +0800 |
commit | c89eec426152d2a65e1b45ad7d7b1fb10917911c (patch) | |
tree | 4fd69c0bf509b67aaa8b18e2c597a389aa1a282d | |
parent | edc0fec8087d322f365a5a4c37c2337c7102e094 (diff) | |
download | dexon-sol-tools-c89eec426152d2a65e1b45ad7d7b1fb10917911c.tar dexon-sol-tools-c89eec426152d2a65e1b45ad7d7b1fb10917911c.tar.gz dexon-sol-tools-c89eec426152d2a65e1b45ad7d7b1fb10917911c.tar.bz2 dexon-sol-tools-c89eec426152d2a65e1b45ad7d7b1fb10917911c.tar.lz dexon-sol-tools-c89eec426152d2a65e1b45ad7d7b1fb10917911c.tar.xz dexon-sol-tools-c89eec426152d2a65e1b45ad7d7b1fb10917911c.tar.zst dexon-sol-tools-c89eec426152d2a65e1b45ad7d7b1fb10917911c.zip |
fix styling
-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; |