aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ts/contract_wrappers/contract_wrapper.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ts/contract_wrappers/contract_wrapper.ts b/src/ts/contract_wrappers/contract_wrapper.ts
index aeb52b0e1..c3495fa21 100644
--- a/src/ts/contract_wrappers/contract_wrapper.ts
+++ b/src/ts/contract_wrappers/contract_wrapper.ts
@@ -9,7 +9,6 @@ export class ContractWrapper {
constructor(web3Wrapper: Web3Wrapper) {
this.web3Wrapper = web3Wrapper;
}
- // this.exchange = await this.instantiateContractIfExistsAsync(ExchangeArtifacts);
protected async instantiateContractIfExistsAsync(artifact: Artifact, address?: string): Promise<ContractInstance> {
const c = await contract(artifact);
const providerObj = this.web3Wrapper.getCurrentProvider();