diff options
author | Jacob Evans <jacob@dekz.net> | 2018-04-18 09:24:59 +0800 |
---|---|---|
committer | Jacob Evans <jacob@dekz.net> | 2018-04-18 09:24:59 +0800 |
commit | 1a161cc02e38d2a8aaf31cc3cc6dbab8e873b9ea (patch) | |
tree | cea85884a7c0a58f46a95ce1e7fa737f78aed9d6 /packages/0x.js/src/utils | |
parent | a63dfb7995e90c330112557396a8523561fa231a (diff) | |
download | dexon-sol-tools-1a161cc02e38d2a8aaf31cc3cc6dbab8e873b9ea.tar dexon-sol-tools-1a161cc02e38d2a8aaf31cc3cc6dbab8e873b9ea.tar.gz dexon-sol-tools-1a161cc02e38d2a8aaf31cc3cc6dbab8e873b9ea.tar.bz2 dexon-sol-tools-1a161cc02e38d2a8aaf31cc3cc6dbab8e873b9ea.tar.lz dexon-sol-tools-1a161cc02e38d2a8aaf31cc3cc6dbab8e873b9ea.tar.xz dexon-sol-tools-1a161cc02e38d2a8aaf31cc3cc6dbab8e873b9ea.tar.zst dexon-sol-tools-1a161cc02e38d2a8aaf31cc3cc6dbab8e873b9ea.zip |
Fix linter and prettier
Diffstat (limited to 'packages/0x.js/src/utils')
-rw-r--r-- | packages/0x.js/src/utils/order_state_utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/utils/order_state_utils.ts b/packages/0x.js/src/utils/order_state_utils.ts index e15ff6bc9..b0310d8a8 100644 --- a/packages/0x.js/src/utils/order_state_utils.ts +++ b/packages/0x.js/src/utils/order_state_utils.ts @@ -3,9 +3,9 @@ import { BigNumber } from '@0xproject/utils'; import * as _ from 'lodash'; import { ZeroEx } from '../0x'; -import { ExchangeWrapper } from '../contract_wrappers/exchange_wrapper'; import { BalanceAndProxyAllowanceFetcher } from '../abstract/balance_and_proxy_allowance_fetcher'; import { OrderFilledCancelledFetcher } from '../abstract/order_filled_cancelled_fetcher'; +import { ExchangeWrapper } from '../contract_wrappers/exchange_wrapper'; import { RemainingFillableCalculator } from '../order_watcher/remaining_fillable_calculator'; import { ExchangeContractErrs, OrderRelevantState, OrderState, OrderStateInvalid, OrderStateValid } from '../types'; |