Remove unused constructor arguments

This commit is contained in:
Amir Bandeali
2018-04-21 15:42:09 -07:00
parent 67117913dd
commit fe6c77cafb
5 changed files with 18 additions and 34 deletions

View File

@@ -129,9 +129,8 @@ describe('Exchange', () => {
);
// Deploy and configure Exchange
const exchangeInstance = await deployer.deployAsync(ContractName.Exchange, [
zrx.address,
encodeERC20ProxyData(zrx.address),
assetProxyDispatcher.address,
encodeERC20ProxyData(zrx.address),
]);
exchange = new ExchangeContract(exchangeInstance.abi, exchangeInstance.address, provider);
await assetProxyDispatcher.addAuthorizedAddress.sendTransactionAsync(exchange.address, { from: owner });