diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-04-17 08:33:55 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-04-21 04:56:18 +0800 |
commit | c19fb1dffcca820e1e82b5baad4b126abda8d112 (patch) | |
tree | b899bd223172aed975e0fc3f5aca9e4b5a17c8bc /packages/contracts/test/exchange/helpers.ts | |
parent | 436a6605fb990d4c7aaea5688aefad73dee4d748 (diff) | |
download | dexon-sol-tools-c19fb1dffcca820e1e82b5baad4b126abda8d112.tar dexon-sol-tools-c19fb1dffcca820e1e82b5baad4b126abda8d112.tar.gz dexon-sol-tools-c19fb1dffcca820e1e82b5baad4b126abda8d112.tar.bz2 dexon-sol-tools-c19fb1dffcca820e1e82b5baad4b126abda8d112.tar.lz dexon-sol-tools-c19fb1dffcca820e1e82b5baad4b126abda8d112.tar.xz dexon-sol-tools-c19fb1dffcca820e1e82b5baad4b126abda8d112.tar.zst dexon-sol-tools-c19fb1dffcca820e1e82b5baad4b126abda8d112.zip |
Removed ERC20 V1 Proxy + TokenTransferProxy
Diffstat (limited to 'packages/contracts/test/exchange/helpers.ts')
-rw-r--r-- | packages/contracts/test/exchange/helpers.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/contracts/test/exchange/helpers.ts b/packages/contracts/test/exchange/helpers.ts index 92fce8e47..43dfd5402 100644 --- a/packages/contracts/test/exchange/helpers.ts +++ b/packages/contracts/test/exchange/helpers.ts @@ -35,7 +35,6 @@ describe('Exchange', () => { [makerAddress, feeRecipientAddress] = accounts; const owner = accounts[0]; const tokenRegistry = await deployer.deployAsync(ContractName.TokenRegistry); - const tokenTransferProxy = await deployer.deployAsync(ContractName.TokenTransferProxy); const [rep, dgd, zrx] = await Promise.all([ deployer.deployAsync(ContractName.DummyToken, constants.DUMMY_TOKEN_ARGS), deployer.deployAsync(ContractName.DummyToken, constants.DUMMY_TOKEN_ARGS), |