Ran prettier

This commit is contained in:
Greg Hysen
2018-04-16 18:29:47 -07:00
committed by Amir Bandeali
parent 3b7068e8d0
commit f4589b5bd4
4 changed files with 15 additions and 58 deletions

View File

@@ -103,11 +103,7 @@ describe('Exchange', () => {
);
// Deploy ERC20 Proxy
const erc20ProxyInstance = await deployer.deployAsync(ContractName.ERC20Proxy);
erc20Proxy = new ERC20ProxyContract(
erc20ProxyInstance.abi,
erc20ProxyInstance.address,
provider,
);
erc20Proxy = new ERC20ProxyContract(erc20ProxyInstance.abi, erc20ProxyInstance.address, provider);
await erc20Proxy.addAuthorizedAddress.sendTransactionAsync(assetProxyDispatcher.address, {
from: owner,
});
@@ -119,11 +115,7 @@ describe('Exchange', () => {
);
// Deploy ERC721 Proxy
const erc721ProxyInstance = await deployer.deployAsync(ContractName.ERC721Proxy);
erc721Proxy = new ERC721ProxyContract(
erc721ProxyInstance.abi,
erc721ProxyInstance.address,
provider,
);
erc721Proxy = new ERC721ProxyContract(erc721ProxyInstance.abi, erc721ProxyInstance.address, provider);
await erc721Proxy.addAuthorizedAddress.sendTransactionAsync(assetProxyDispatcher.address, {
from: owner,
});