aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/core/test/exchange/transactions.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-12-05 21:23:35 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-12-05 22:21:03 +0800
commita365ab11d24ff8365b7d69a948b1b5211b772f5e (patch)
treea5b6f7f83957ee578323d66a00f0b5f233518192 /contracts/core/test/exchange/transactions.ts
parent48021a227f7034c2238c64146b2eb05eb8bfb687 (diff)
downloaddexon-sol-tools-a365ab11d24ff8365b7d69a948b1b5211b772f5e.tar
dexon-sol-tools-a365ab11d24ff8365b7d69a948b1b5211b772f5e.tar.gz
dexon-sol-tools-a365ab11d24ff8365b7d69a948b1b5211b772f5e.tar.bz2
dexon-sol-tools-a365ab11d24ff8365b7d69a948b1b5211b772f5e.tar.lz
dexon-sol-tools-a365ab11d24ff8365b7d69a948b1b5211b772f5e.tar.xz
dexon-sol-tools-a365ab11d24ff8365b7d69a948b1b5211b772f5e.tar.zst
dexon-sol-tools-a365ab11d24ff8365b7d69a948b1b5211b772f5e.zip
Refactor out tokens from core contracts package
Diffstat (limited to 'contracts/core/test/exchange/transactions.ts')
-rw-r--r--contracts/core/test/exchange/transactions.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/contracts/core/test/exchange/transactions.ts b/contracts/core/test/exchange/transactions.ts
index c4086d9be..ad0ca41c2 100644
--- a/contracts/core/test/exchange/transactions.ts
+++ b/contracts/core/test/exchange/transactions.ts
@@ -11,6 +11,7 @@ import {
txDefaults,
web3Wrapper,
} from '@0x/contracts-test-utils';
+import { DummyERC20TokenContract } from '@0x/contracts-tokens';
import { BlockchainLifecycle } from '@0x/dev-utils';
import { assetDataUtils, generatePseudoRandomSalt } from '@0x/order-utils';
import { OrderWithoutExchangeAddress, RevertReason, SignedOrder } from '@0x/types';
@@ -18,7 +19,6 @@ import { BigNumber } from '@0x/utils';
import * as chai from 'chai';
import * as _ from 'lodash';
-import { DummyERC20TokenContract } from '../../generated-wrappers/dummy_erc20_token';
import { ERC20ProxyContract } from '../../generated-wrappers/erc20_proxy';
import { ExchangeContract } from '../../generated-wrappers/exchange';
import { ExchangeWrapperContract } from '../../generated-wrappers/exchange_wrapper';