diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-12-23 04:56:52 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2019-01-08 07:50:48 +0800 |
commit | c6ab380685098dbf3a0a6ee5fae137e816839c2d (patch) | |
tree | 2f4e6f2934fde26d5fadbab0eea9a590c1a1b6f1 /packages/contract-wrappers/test/utils | |
parent | d6467d707fdc1797eba4a445e805ccadc1f47872 (diff) | |
download | dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.gz dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.bz2 dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.lz dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.xz dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.zst dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.zip |
Ran prettier & linter
Diffstat (limited to 'packages/contract-wrappers/test/utils')
-rw-r--r-- | packages/contract-wrappers/test/utils/dutch_auction_utils.ts | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/contract-wrappers/test/utils/dutch_auction_utils.ts b/packages/contract-wrappers/test/utils/dutch_auction_utils.ts index 9cff1930d..766fc373a 100644 --- a/packages/contract-wrappers/test/utils/dutch_auction_utils.ts +++ b/packages/contract-wrappers/test/utils/dutch_auction_utils.ts @@ -1,19 +1,20 @@ -import { DummyERC20TokenContract, DummyERC721TokenContract, ExchangeContract } from '@0x/abi-gen-wrappers'; -import { SignedOrder } from '@0x/types'; +import { DummyERC20TokenContract } from '@0x/abi-gen-wrappers'; import * as artifacts from '@0x/contract-artifacts'; +import { assetDataUtils } from '@0x/order-utils'; +import { orderFactory } from '@0x/order-utils/lib/src/order_factory'; +import { SignedOrder } from '@0x/types'; import { BigNumber } from '@0x/utils'; import { Web3Wrapper } from '@0x/web3-wrapper'; -import { orderFactory } from '@0x/order-utils/lib/src/order_factory'; import { DutchAuctionWrapper } from '../../src/contract_wrappers/dutch_auction_wrapper'; + import { constants } from './constants'; -import { assetDataUtils } from '@0x/order-utils'; export class DutchAuctionUtils { - private _web3Wrapper: Web3Wrapper; - private _coinbase: string; - private _exchangeAddress: string; - private _erc20ProxyAddress: string; + private readonly _web3Wrapper: Web3Wrapper; + private readonly _coinbase: string; + private readonly _exchangeAddress: string; + private readonly _erc20ProxyAddress: string; constructor(web3Wrapper: Web3Wrapper, coinbase: string, exchangeAddress: string, erc20ProxyAddress: string) { this._web3Wrapper = web3Wrapper; @@ -36,7 +37,6 @@ export class DutchAuctionUtils { takerFee?: BigNumber, feeRecipientAddress?: string, ): Promise<SignedOrder> { - console.log(`asdasd`); const makerAssetAmount = auctionEndAmount; const makerAssetDataWithAuctionDetails = DutchAuctionWrapper.encodeDutchAuctionAssetData( makerAssetData, |