diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-13 07:54:31 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-13 09:06:13 +0800 |
commit | fdb82d5dd4ea14e35ee03cf9abca6105fa1e0595 (patch) | |
tree | 6eaed174ee356c91f55a77c2c23560d3f2490a0a /src | |
parent | a5876978838baa9a66c2dd9714dd2810839aa55b (diff) | |
download | dexon-sol-tools-fdb82d5dd4ea14e35ee03cf9abca6105fa1e0595.tar dexon-sol-tools-fdb82d5dd4ea14e35ee03cf9abca6105fa1e0595.tar.gz dexon-sol-tools-fdb82d5dd4ea14e35ee03cf9abca6105fa1e0595.tar.bz2 dexon-sol-tools-fdb82d5dd4ea14e35ee03cf9abca6105fa1e0595.tar.lz dexon-sol-tools-fdb82d5dd4ea14e35ee03cf9abca6105fa1e0595.tar.xz dexon-sol-tools-fdb82d5dd4ea14e35ee03cf9abca6105fa1e0595.tar.zst dexon-sol-tools-fdb82d5dd4ea14e35ee03cf9abca6105fa1e0595.zip |
Fix a typo
Diffstat (limited to 'src')
-rw-r--r-- | src/order_watcher/order_state_watcher.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/order_watcher/order_state_watcher.ts b/src/order_watcher/order_state_watcher.ts index 3c09a2743..b69540716 100644 --- a/src/order_watcher/order_state_watcher.ts +++ b/src/order_watcher/order_state_watcher.ts @@ -205,7 +205,7 @@ export class OrderStateWatcher { private async _emitRevalidateOrdersAsync(orderHashes: string[]): Promise<void> { for (const orderHash of orderHashes) { const signedOrder = this._orderByOrderHash[orderHash] as SignedOrder; - // Most of those calls will never reach the network because the data is fetched from stores + // Most of these calls will never reach the network because the data is fetched from stores // and only updated when cache is invalidated const orderState = await this._orderStateUtils.getOrderStateAsync(signedOrder); if (_.isUndefined(this._callbackIfExistsAsync)) { |