diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-31 16:35:40 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-31 16:35:40 +0800 |
commit | 03072049d67f460e2420ed5e05a91ab1c06972ac (patch) | |
tree | 15291703d1e0562e41bac8a8a8adac5efdd07043 /src/contract_wrappers | |
parent | d1d66f563581c7f56d4956903cfb1b23d149cf18 (diff) | |
download | dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.gz dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.bz2 dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.lz dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.xz dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.zst dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.zip |
remove InternalError type since this error could surface through the public interface
Diffstat (limited to 'src/contract_wrappers')
-rw-r--r-- | src/contract_wrappers/token_wrapper.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contract_wrappers/token_wrapper.ts b/src/contract_wrappers/token_wrapper.ts index 928b67a03..35e008905 100644 --- a/src/contract_wrappers/token_wrapper.ts +++ b/src/contract_wrappers/token_wrapper.ts @@ -6,7 +6,7 @@ import {constants} from '../utils/constants'; import {ContractWrapper} from './contract_wrapper'; import * as TokenArtifacts from '../artifacts/Token.json'; import * as ProxyArtifacts from '../artifacts/Proxy.json'; -import {TokenContract, InternalError} from '../types'; +import {TokenContract, ZeroExError} from '../types'; const ALLOWANCE_TO_ZERO_GAS_AMOUNT = 45730; @@ -85,7 +85,7 @@ export class TokenWrapper extends ContractWrapper { undefined : (ProxyArtifacts as any).networks[networkIdIfExists]; if (_.isUndefined(proxyNetworkConfigsIfExists)) { - throw new Error(InternalError.PROXY_ADDRESS_NOT_FOUND); + throw new Error(ZeroExError.CONTRACT_NOT_DEPLOYED_ON_NETWORK); } const proxyAddress = proxyNetworkConfigsIfExists.address; return proxyAddress; |