diff options
-rw-r--r-- | src/contract_wrappers/proxy_wrapper.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/contract_wrappers/proxy_wrapper.ts b/src/contract_wrappers/proxy_wrapper.ts index b941f742e..d3180df37 100644 --- a/src/contract_wrappers/proxy_wrapper.ts +++ b/src/contract_wrappers/proxy_wrapper.ts @@ -9,9 +9,6 @@ import {ProxyContract} from '../types'; */ export class ProxyWrapper extends ContractWrapper { private _proxyContractIfExists?: ProxyContract; - constructor(web3Wrapper: Web3Wrapper) { - super(web3Wrapper); - } public invalidateContractInstance(): void { delete this._proxyContractIfExists; } |