diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-05 02:12:56 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-05 02:12:56 +0800 |
commit | 4ebf046cea8ff510567b5d05d188cd9f84ad1988 (patch) | |
tree | dcf9d9d55a92c9d3a813db9789704990620c9629 /src/contract_wrappers/exchange_wrapper.ts | |
parent | 43bebf6d61be47ecab977ea328f580c4588b4804 (diff) | |
download | dexon-sol-tools-4ebf046cea8ff510567b5d05d188cd9f84ad1988.tar dexon-sol-tools-4ebf046cea8ff510567b5d05d188cd9f84ad1988.tar.gz dexon-sol-tools-4ebf046cea8ff510567b5d05d188cd9f84ad1988.tar.bz2 dexon-sol-tools-4ebf046cea8ff510567b5d05d188cd9f84ad1988.tar.lz dexon-sol-tools-4ebf046cea8ff510567b5d05d188cd9f84ad1988.tar.xz dexon-sol-tools-4ebf046cea8ff510567b5d05d188cd9f84ad1988.tar.zst dexon-sol-tools-4ebf046cea8ff510567b5d05d188cd9f84ad1988.zip |
Make invalidateContractInstancesAsync private on exchange and token
Diffstat (limited to 'src/contract_wrappers/exchange_wrapper.ts')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 9d9428327..72f00ee91 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -92,10 +92,6 @@ export class ExchangeWrapper extends ContractWrapper { this._exchangeLogEventEmitters = []; this._exchangeContractByAddress = {}; } - public async invalidateContractInstancesAsync(): Promise<void> { - await this.stopWatchingAllEventsAsync(); - this._exchangeContractByAddress = {}; - } /** * Returns the unavailable takerAmount of an order. Unavailable amount is defined as the total * amount that has been filled or cancelled. The remaining takerAmount can be calculated by @@ -658,6 +654,10 @@ export class ExchangeWrapper extends ContractWrapper { await Promise.all(stopWatchingPromises); this._exchangeLogEventEmitters = []; } + private async _invalidateContractInstancesAsync(): Promise<void> { + await this.stopWatchingAllEventsAsync(); + this._exchangeContractByAddress = {}; + } private async _isExchangeContractAddressProxyAuthorizedAsync(exchangeContractAddress: string): Promise<boolean> { const isAuthorized = await this._proxyWrapper.isAuthorizedAsync(exchangeContractAddress); return isAuthorized; |