From 1311dfe7f5fac9b08a83bc4d0eaab7996dad1957 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Mon, 21 Aug 2017 07:20:06 -0500 Subject: Update artifacts and rename proxy to tokenTransferProxy --- src/contract_wrappers/proxy_wrapper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/contract_wrappers/proxy_wrapper.ts') diff --git a/src/contract_wrappers/proxy_wrapper.ts b/src/contract_wrappers/proxy_wrapper.ts index 9deed5231..c69ca7017 100644 --- a/src/contract_wrappers/proxy_wrapper.ts +++ b/src/contract_wrappers/proxy_wrapper.ts @@ -1,6 +1,6 @@ import * as _ from 'lodash'; import {ContractWrapper} from './contract_wrapper'; -import * as ProxyArtifacts from '../artifacts/Proxy.json'; +import * as TokenTransferProxyArtifacts from '../artifacts/TokenTransferProxy.json'; import {ProxyContract} from '../types'; /** @@ -34,7 +34,7 @@ export class ProxyWrapper extends ContractWrapper { if (!_.isUndefined(this._proxyContractIfExists)) { return this._proxyContractIfExists; } - const contractInstance = await this._instantiateContractIfExistsAsync((ProxyArtifacts as any)); + const contractInstance = await this._instantiateContractIfExistsAsync((TokenTransferProxyArtifacts as any)); this._proxyContractIfExists = contractInstance as ProxyContract; return this._proxyContractIfExists; } -- cgit v1.2.3