diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-12 08:40:37 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-12 08:40:37 +0800 |
commit | 4efba2a4bc93f49f1962f1c774c628aea4d19251 (patch) | |
tree | 67abd7c0bca868a3b2d1f46c6f30321ba7c175be | |
parent | d8fb58379e7b5425cea51208e047e5f7eaac7b78 (diff) | |
download | dexon-sol-tools-4efba2a4bc93f49f1962f1c774c628aea4d19251.tar dexon-sol-tools-4efba2a4bc93f49f1962f1c774c628aea4d19251.tar.gz dexon-sol-tools-4efba2a4bc93f49f1962f1c774c628aea4d19251.tar.bz2 dexon-sol-tools-4efba2a4bc93f49f1962f1c774c628aea4d19251.tar.lz dexon-sol-tools-4efba2a4bc93f49f1962f1c774c628aea4d19251.tar.xz dexon-sol-tools-4efba2a4bc93f49f1962f1c774c628aea4d19251.tar.zst dexon-sol-tools-4efba2a4bc93f49f1962f1c774c628aea4d19251.zip |
Fix the comment
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 50e0f5d3c..a6eab0fa2 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -609,7 +609,9 @@ export class ExchangeWrapper extends ContractWrapper { this._exchangeLogEventEmitters = []; } /** - * Returns the Ethereum address of the Exchange contract being used. + * Retrieves the Ethereum address of the Exchange contract deployed on the network + * that the user-passed web3 provider is connected to. + * @returns The Ethereum address of the Exchange contract being used. */ public async getContractAddressAsync(): Promise<string> { const exchangeInstance = await this._getExchangeContractAsync(); |