aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-11-09 07:59:40 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-11-10 03:11:46 +0800
commitc89eec426152d2a65e1b45ad7d7b1fb10917911c (patch)
tree4fd69c0bf509b67aaa8b18e2c597a389aa1a282d /src
parentedc0fec8087d322f365a5a4c37c2337c7102e094 (diff)
downloaddexon-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
Diffstat (limited to 'src')
-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;