diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-26 23:40:35 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-26 23:40:35 +0800 |
commit | a4ec739ce685989dde01c38cf45f4c21026f3c20 (patch) | |
tree | 1aead4f8022f7a4add1886743b7420ddbb84f526 | |
parent | 57b820c7467102b299e602aaa94e043ee0bd4690 (diff) | |
download | dexon-sol-tools-a4ec739ce685989dde01c38cf45f4c21026f3c20.tar dexon-sol-tools-a4ec739ce685989dde01c38cf45f4c21026f3c20.tar.gz dexon-sol-tools-a4ec739ce685989dde01c38cf45f4c21026f3c20.tar.bz2 dexon-sol-tools-a4ec739ce685989dde01c38cf45f4c21026f3c20.tar.lz dexon-sol-tools-a4ec739ce685989dde01c38cf45f4c21026f3c20.tar.xz dexon-sol-tools-a4ec739ce685989dde01c38cf45f4c21026f3c20.tar.zst dexon-sol-tools-a4ec739ce685989dde01c38cf45f4c21026f3c20.zip |
remove comment
-rw-r--r-- | src/ts/contract_wrappers/contract_wrapper.ts | 1 |
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(); |