Ran prettier
This commit is contained in:
committed by
Amir Bandeali
parent
3b7068e8d0
commit
f4589b5bd4
@@ -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,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user