aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-11-11 07:06:57 +0800
committerFabio Berger <me@fabioberger.com>2017-11-11 07:06:57 +0800
commitca9c1bca4a694026981a804c58138f08c8b23321 (patch)
tree16f2dfe139b4d1c667f4c2793603139dae1fbf25
parent0d957ea71d9323445add682d7ee98d9b3cb1a973 (diff)
downloaddexon-sol-tools-ca9c1bca4a694026981a804c58138f08c8b23321.tar
dexon-sol-tools-ca9c1bca4a694026981a804c58138f08c8b23321.tar.gz
dexon-sol-tools-ca9c1bca4a694026981a804c58138f08c8b23321.tar.bz2
dexon-sol-tools-ca9c1bca4a694026981a804c58138f08c8b23321.tar.lz
dexon-sol-tools-ca9c1bca4a694026981a804c58138f08c8b23321.tar.xz
dexon-sol-tools-ca9c1bca4a694026981a804c58138f08c8b23321.tar.zst
dexon-sol-tools-ca9c1bca4a694026981a804c58138f08c8b23321.zip
Fix alignment
-rw-r--r--src/order_watcher/event_watcher.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/order_watcher/event_watcher.ts b/src/order_watcher/event_watcher.ts
index 304b3e994..286872a6f 100644
--- a/src/order_watcher/event_watcher.ts
+++ b/src/order_watcher/event_watcher.ts
@@ -23,8 +23,8 @@ export class EventWatcher {
this._web3Wrapper = web3Wrapper;
this._numConfirmations = numConfirmations;
this._pollingIntervalMs = _.isUndefined(pollingIntervalMs) ?
- DEFAULT_EVENT_POLLING_INTERVAL :
- pollingIntervalMs;
+ DEFAULT_EVENT_POLLING_INTERVAL :
+ pollingIntervalMs;
}
public subscribe(callback: EventWatcherCallback): void {
assert.isFunction('callback', callback);