From cb31b21d28c20a0153199e9388202301e1385bfe Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Tue, 30 May 2017 12:43:06 +0200 Subject: rename invalidateExchangeContract to invalidateContractInstance --- src/0x.js.ts | 2 +- src/contract_wrappers/exchange_wrapper.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/0x.js.ts b/src/0x.js.ts index 3dfdfbfcd..506ac4187 100644 --- a/src/0x.js.ts +++ b/src/0x.js.ts @@ -142,7 +142,7 @@ export class ZeroEx { */ public setProvider(provider: Web3.Provider) { this.web3Wrapper.setProvider(provider); - this.exchange.invalidateExchangeContract(); + this.exchange.invalidateContractInstance(); } /** * Signs an orderHash and returns it's elliptic curve signature diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index a7abbb078..d2f7a8f42 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -12,7 +12,7 @@ export class ExchangeWrapper extends ContractWrapper { constructor(web3Wrapper: Web3Wrapper) { super(web3Wrapper); } - public invalidateExchangeContract() { + public invalidateContractInstance() { delete this.exchangeContractIfExists; } public async isValidSignatureAsync(dataHex: string, ecSignature: ECSignature, -- cgit v1.2.3