diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-12 01:43:40 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-12 01:43:40 +0800 |
commit | 89b7b56a2cb38d95f65067e5493e8135cb1e7e98 (patch) | |
tree | 5edf371ba080d4ca747ecda2f4c0695fff95a618 /packages/order-utils/src | |
parent | ae54b13d4b36ff2b95a3df211bf53948def3f855 (diff) | |
download | dexon-sol-tools-89b7b56a2cb38d95f65067e5493e8135cb1e7e98.tar dexon-sol-tools-89b7b56a2cb38d95f65067e5493e8135cb1e7e98.tar.gz dexon-sol-tools-89b7b56a2cb38d95f65067e5493e8135cb1e7e98.tar.bz2 dexon-sol-tools-89b7b56a2cb38d95f65067e5493e8135cb1e7e98.tar.lz dexon-sol-tools-89b7b56a2cb38d95f65067e5493e8135cb1e7e98.tar.xz dexon-sol-tools-89b7b56a2cb38d95f65067e5493e8135cb1e7e98.tar.zst dexon-sol-tools-89b7b56a2cb38d95f65067e5493e8135cb1e7e98.zip |
Fix tslint issues
Diffstat (limited to 'packages/order-utils/src')
3 files changed, 1 insertions, 3 deletions
diff --git a/packages/order-utils/src/exchange_transfer_simulator.ts b/packages/order-utils/src/exchange_transfer_simulator.ts index 1cb132aba..32d53d6a2 100644 --- a/packages/order-utils/src/exchange_transfer_simulator.ts +++ b/packages/order-utils/src/exchange_transfer_simulator.ts @@ -1,6 +1,5 @@ import { ExchangeContractErrs } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; -import { BlockParamLiteral } from 'ethereum-types'; import { AbstractBalanceAndProxyAllowanceLazyStore } from './abstract/abstract_balance_and_proxy_allowance_lazy_store'; import { constants } from './constants'; diff --git a/packages/order-utils/src/order_validation_utils.ts b/packages/order-utils/src/order_validation_utils.ts index 4280e4d97..aebb6db70 100644 --- a/packages/order-utils/src/order_validation_utils.ts +++ b/packages/order-utils/src/order_validation_utils.ts @@ -192,7 +192,7 @@ export class OrderValidationUtils { zrxTokenAddress, ); - const wouldRoundingErrorOccur = await OrderValidationUtils.isRoundingError( + const wouldRoundingErrorOccur = OrderValidationUtils.isRoundingError( filledTakerTokenAmount, signedOrder.takerAssetAmount, signedOrder.makerAssetAmount, diff --git a/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts b/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts index b5bd2801a..08d50b924 100644 --- a/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts +++ b/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts @@ -1,5 +1,4 @@ import { BigNumber } from '@0xproject/utils'; -import { BlockParamLiteral } from 'ethereum-types'; import * as _ from 'lodash'; import { AbstractBalanceAndProxyAllowanceFetcher } from '../abstract/abstract_balance_and_proxy_allowance_fetcher'; |