diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-02 05:12:18 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-02 05:12:18 +0800 |
commit | 324fab81865a4cebb84dc99200825f4e395008eb (patch) | |
tree | 4f920787c7a5d38fd402d2e7f42b7ade41a95b33 /packages | |
parent | 7ab80f01b5f3c3a9bd9ccc7155f3d780f680ff7a (diff) | |
download | dexon-sol-tools-324fab81865a4cebb84dc99200825f4e395008eb.tar dexon-sol-tools-324fab81865a4cebb84dc99200825f4e395008eb.tar.gz dexon-sol-tools-324fab81865a4cebb84dc99200825f4e395008eb.tar.bz2 dexon-sol-tools-324fab81865a4cebb84dc99200825f4e395008eb.tar.lz dexon-sol-tools-324fab81865a4cebb84dc99200825f4e395008eb.tar.xz dexon-sol-tools-324fab81865a4cebb84dc99200825f4e395008eb.tar.zst dexon-sol-tools-324fab81865a4cebb84dc99200825f4e395008eb.zip |
Fix tslint issues
Diffstat (limited to 'packages')
-rw-r--r-- | packages/contracts/src/utils/order_factory.ts | 3 | ||||
-rw-r--r-- | packages/contracts/test/exchange/signature_validator.ts | 3 | ||||
-rw-r--r-- | packages/contracts/test/exchange/wrapper.ts | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/packages/contracts/src/utils/order_factory.ts b/packages/contracts/src/utils/order_factory.ts index fc491d967..ef11e4341 100644 --- a/packages/contracts/src/utils/order_factory.ts +++ b/packages/contracts/src/utils/order_factory.ts @@ -1,5 +1,4 @@ -import { generatePseudoRandomSalt } from '@0xproject/order-utils'; -import { orderHashUtils } from '@0xproject/order-utils'; +import { generatePseudoRandomSalt, orderHashUtils } from '@0xproject/order-utils'; import { Order, SignatureType, SignedOrder } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import * as _ from 'lodash'; diff --git a/packages/contracts/test/exchange/signature_validator.ts b/packages/contracts/test/exchange/signature_validator.ts index 194053abc..936910ee9 100644 --- a/packages/contracts/test/exchange/signature_validator.ts +++ b/packages/contracts/test/exchange/signature_validator.ts @@ -1,6 +1,5 @@ import { BlockchainLifecycle } from '@0xproject/dev-utils'; -import { orderHashUtils } from '@0xproject/order-utils'; -import { assetProxyUtils } from '@0xproject/order-utils'; +import { assetProxyUtils, orderHashUtils } from '@0xproject/order-utils'; import { SignedOrder } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import * as chai from 'chai'; diff --git a/packages/contracts/test/exchange/wrapper.ts b/packages/contracts/test/exchange/wrapper.ts index d8055908a..a158ba8f3 100644 --- a/packages/contracts/test/exchange/wrapper.ts +++ b/packages/contracts/test/exchange/wrapper.ts @@ -1,4 +1,5 @@ import { BlockchainLifecycle, devConstants, web3Factory } from '@0xproject/dev-utils'; +import { assetProxyUtils } from '@0xproject/order-utils'; import { AssetProxyId, SignedOrder } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; @@ -14,7 +15,6 @@ import { ERC721ProxyContract } from '../../src/contract_wrappers/generated/e_r_c import { ExchangeContract } from '../../src/contract_wrappers/generated/exchange'; import { TokenRegistryContract } from '../../src/contract_wrappers/generated/token_registry'; import { artifacts } from '../../src/utils/artifacts'; -import { assetProxyUtils } from '@0xproject/order-utils'; import { chaiSetup } from '../../src/utils/chai_setup'; import { constants } from '../../src/utils/constants'; import { ERC20Wrapper } from '../../src/utils/erc20_wrapper'; |