aboutsummaryrefslogtreecommitdiffstats
path: root/src/0x.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-07-05 02:12:56 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-07-05 02:12:56 +0800
commit4ebf046cea8ff510567b5d05d188cd9f84ad1988 (patch)
treedcf9d9d55a92c9d3a813db9789704990620c9629 /src/0x.ts
parent43bebf6d61be47ecab977ea328f580c4588b4804 (diff)
downloaddexon-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/0x.ts')
-rw-r--r--src/0x.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/0x.ts b/src/0x.ts
index d42c16ca6..25ad538b9 100644
--- a/src/0x.ts
+++ b/src/0x.ts
@@ -168,9 +168,9 @@ export class ZeroEx {
*/
public async setProviderAsync(provider: Web3Provider) {
this._web3Wrapper.setProvider(provider);
- await this.exchange.invalidateContractInstancesAsync();
+ await (this.exchange as any)._invalidateContractInstancesAsync();
this.tokenRegistry.invalidateContractInstance();
- await this.token.invalidateContractInstancesAsync();
+ await (this.token as any)._invalidateContractInstancesAsync();
this.proxy.invalidateContractInstance();
}
/**