aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authoramaurer <git@maurer.me>2018-10-06 23:04:48 +0800
committeramaurer <git@maurer.me>2018-10-06 23:04:48 +0800
commit9171f9ec600b04134e0f86741e60a973618839b5 (patch)
treeffcfba260a7f80c458de3118328d91197c5e97c4 /packages
parentd0fed1ae464301cb26df16053991e667598b640e (diff)
downloaddexon-sol-tools-9171f9ec600b04134e0f86741e60a973618839b5.tar
dexon-sol-tools-9171f9ec600b04134e0f86741e60a973618839b5.tar.gz
dexon-sol-tools-9171f9ec600b04134e0f86741e60a973618839b5.tar.bz2
dexon-sol-tools-9171f9ec600b04134e0f86741e60a973618839b5.tar.lz
dexon-sol-tools-9171f9ec600b04134e0f86741e60a973618839b5.tar.xz
dexon-sol-tools-9171f9ec600b04134e0f86741e60a973618839b5.tar.zst
dexon-sol-tools-9171f9ec600b04134e0f86741e60a973618839b5.zip
Fix lint issues
Diffstat (limited to 'packages')
-rw-r--r--packages/order-watcher/src/order_watcher/order_watcher.ts1
-rw-r--r--packages/order-watcher/test/order_watcher_test.ts2
2 files changed, 1 insertions, 2 deletions
diff --git a/packages/order-watcher/src/order_watcher/order_watcher.ts b/packages/order-watcher/src/order_watcher/order_watcher.ts
index 5ddfdd047..e59b56b90 100644
--- a/packages/order-watcher/src/order_watcher/order_watcher.ts
+++ b/packages/order-watcher/src/order_watcher/order_watcher.ts
@@ -215,7 +215,6 @@ export class OrderWatcher {
}
/**
* Gets number of orderHashes currently being watched by the order watcher instance.
- * @returns {number} Number of hashes in _orderByOrderHash
*/
public getWatchCount(): number {
return _.size(this._orderByOrderHash);
diff --git a/packages/order-watcher/test/order_watcher_test.ts b/packages/order-watcher/test/order_watcher_test.ts
index f504dda8e..f1dbe9b2f 100644
--- a/packages/order-watcher/test/order_watcher_test.ts
+++ b/packages/order-watcher/test/order_watcher_test.ts
@@ -141,7 +141,7 @@ describe('OrderWatcher', () => {
});
});
describe('#getWatchCount', async () => {
- it('should increment and decrement order counts', async() => {
+ it('should increment and decrement order counts', async () => {
signedOrder = await fillScenarios.createFillableSignedOrderAsync(
makerAssetData,
takerAssetData,