diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-08 03:44:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-08 03:44:22 +0800 |
commit | 9bc6ebde4e4425799ed3ddfb50495029865e3ae8 (patch) | |
tree | fe15c8c1abbe77d5e10914ae509b653295862fc6 /packages/order-watcher | |
parent | 96b31f39749fb32bd89978245c79aa637791336c (diff) | |
parent | 011f14d1155fd3f61e53aaa16681afd5c9c9f892 (diff) | |
download | dexon-sol-tools-9bc6ebde4e4425799ed3ddfb50495029865e3ae8.tar dexon-sol-tools-9bc6ebde4e4425799ed3ddfb50495029865e3ae8.tar.gz dexon-sol-tools-9bc6ebde4e4425799ed3ddfb50495029865e3ae8.tar.bz2 dexon-sol-tools-9bc6ebde4e4425799ed3ddfb50495029865e3ae8.tar.lz dexon-sol-tools-9bc6ebde4e4425799ed3ddfb50495029865e3ae8.tar.xz dexon-sol-tools-9bc6ebde4e4425799ed3ddfb50495029865e3ae8.tar.zst dexon-sol-tools-9bc6ebde4e4425799ed3ddfb50495029865e3ae8.zip |
Merge pull request #671 from 0xProject/refactor/move-spawn-switch-to-utils
Move spawnSwitchErr to @0xproject/utils
Diffstat (limited to 'packages/order-watcher')
-rw-r--r-- | packages/order-watcher/src/order_watcher/order_watcher.ts | 5 | ||||
-rw-r--r-- | packages/order-watcher/src/utils/utils.ts | 3 |
2 files changed, 2 insertions, 6 deletions
diff --git a/packages/order-watcher/src/order_watcher/order_watcher.ts b/packages/order-watcher/src/order_watcher/order_watcher.ts index c1f6c9230..140aa341b 100644 --- a/packages/order-watcher/src/order_watcher/order_watcher.ts +++ b/packages/order-watcher/src/order_watcher/order_watcher.ts @@ -14,7 +14,7 @@ import { Provider, SignedOrder, } from '@0xproject/types'; -import { intervalUtils } from '@0xproject/utils'; +import { errorUtils, intervalUtils } from '@0xproject/utils'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; import * as _ from 'lodash'; @@ -39,7 +39,6 @@ import { } from '../generated_contract_wrappers/token'; import { OnOrderStateChangeCallback, OrderWatcherConfig, OrderWatcherError } from '../types'; import { assert } from '../utils/assert'; -import { utils } from '../utils/utils'; import { EventWatcher } from './event_watcher'; import { ExpirationWatcher } from './expiration_watcher'; @@ -344,7 +343,7 @@ export class OrderWatcher { return; // noop default: - throw utils.spawnSwitchErr('decodedLog.event', decodedLog.event); + throw errorUtils.spawnSwitchErr('decodedLog.event', decodedLog.event); } } private async _emitRevalidateOrdersAsync(orderHashes: string[]): Promise<void> { diff --git a/packages/order-watcher/src/utils/utils.ts b/packages/order-watcher/src/utils/utils.ts index d34f6b99f..087fc635e 100644 --- a/packages/order-watcher/src/utils/utils.ts +++ b/packages/order-watcher/src/utils/utils.ts @@ -1,9 +1,6 @@ import { BigNumber } from '@0xproject/utils'; export const utils = { - spawnSwitchErr(name: string, value: any): Error { - return new Error(`Unexpected switch value: ${value} encountered for ${name}`); - }, getCurrentUnixTimestampSec(): BigNumber { const milisecondsInASecond = 1000; return new BigNumber(Date.now() / milisecondsInASecond).round(); |