aboutsummaryrefslogtreecommitdiffstats
path: root/src/contract_wrappers/proxy_wrapper.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-07-12 03:53:22 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-07-12 07:15:08 +0800
commit8052625e76675fbe8c894e7a58fe8707ee14c5ad (patch)
tree9fc20b56c46fdd76525cdf5ef2e1a7c839ed03bc /src/contract_wrappers/proxy_wrapper.ts
parent2787bdc46b1670fb0444578b62ae85e6aa626264 (diff)
downloaddexon-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.ts3
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;