diff options
Diffstat (limited to 'src/contract_wrappers')
-rw-r--r-- | src/contract_wrappers/proxy_wrapper.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contract_wrappers/proxy_wrapper.ts b/src/contract_wrappers/proxy_wrapper.ts index 18c6fdd23..da4f55320 100644 --- a/src/contract_wrappers/proxy_wrapper.ts +++ b/src/contract_wrappers/proxy_wrapper.ts @@ -22,7 +22,7 @@ export class ProxyWrapper extends ContractWrapper { */ public async isAuthorizedAsync(exchangeContractAddress: string): Promise<boolean> { const proxyContractInstance = await this._getTokenRegistryContractAsync(); - const isAuthorized = await proxyContractInstance.authrized.call(exchangeContractAddress); + const isAuthorized = await proxyContractInstance.authorized.call(exchangeContractAddress); return isAuthorized; } private async _getTokenRegistryContractAsync(): Promise<ProxyContract> { |