diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-12 03:53:22 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-12 07:15:08 +0800 |
commit | 8052625e76675fbe8c894e7a58fe8707ee14c5ad (patch) | |
tree | 9fc20b56c46fdd76525cdf5ef2e1a7c839ed03bc /src/contract_wrappers/proxy_wrapper.ts | |
parent | 2787bdc46b1670fb0444578b62ae85e6aa626264 (diff) | |
download | dexon-sol-tools-8052625e76675fbe8c894e7a58fe8707ee14c5ad.tar dexon-sol-tools-8052625e76675fbe8c894e7a58fe8707ee14c5ad.tar.gz dexon-sol-tools-8052625e76675fbe8c894e7a58fe8707ee14c5ad.tar.bz2 dexon-sol-tools-8052625e76675fbe8c894e7a58fe8707ee14c5ad.tar.lz dexon-sol-tools-8052625e76675fbe8c894e7a58fe8707ee14c5ad.tar.xz dexon-sol-tools-8052625e76675fbe8c894e7a58fe8707ee14c5ad.tar.zst dexon-sol-tools-8052625e76675fbe8c894e7a58fe8707ee14c5ad.zip |
Migrate to using a single Exchange contract
Diffstat (limited to 'src/contract_wrappers/proxy_wrapper.ts')
-rw-r--r-- | src/contract_wrappers/proxy_wrapper.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/contract_wrappers/proxy_wrapper.ts b/src/contract_wrappers/proxy_wrapper.ts index 05d4e142c..c247754f8 100644 --- a/src/contract_wrappers/proxy_wrapper.ts +++ b/src/contract_wrappers/proxy_wrapper.ts @@ -21,10 +21,9 @@ export class ProxyWrapper extends ContractWrapper { } /** * Get the list of all Exchange contract addresses authorized by the Proxy contract. - * @param exchangeContractAddress The hex encoded address of the Exchange contract to call. * @return The list of authorized addresses. */ - public async getAuthorizedAddressesAsync(exchangeContractAddress: string): Promise<string[]> { + public async getAuthorizedAddressesAsync(): Promise<string[]> { const proxyContractInstance = await this._getProxyContractAsync(); const authorizedAddresses = await proxyContractInstance.getAuthorizedAddresses.call(); return authorizedAddresses; |