aboutsummaryrefslogtreecommitdiffstats
path: root/src/contract_wrappers/ether_token_wrapper.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-09-19 20:53:12 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-09-19 20:53:12 +0800
commit66db021900cf4ac824635512052afb2bddb0299c (patch)
tree167fec652823cdefa9c08eab01327a6f2c167e59 /src/contract_wrappers/ether_token_wrapper.ts
parente7af0eb20c108eae1c0e753d1079c2db3c13a583 (diff)
downloaddexon-sol-tools-66db021900cf4ac824635512052afb2bddb0299c.tar
dexon-sol-tools-66db021900cf4ac824635512052afb2bddb0299c.tar.gz
dexon-sol-tools-66db021900cf4ac824635512052afb2bddb0299c.tar.bz2
dexon-sol-tools-66db021900cf4ac824635512052afb2bddb0299c.tar.lz
dexon-sol-tools-66db021900cf4ac824635512052afb2bddb0299c.tar.xz
dexon-sol-tools-66db021900cf4ac824635512052afb2bddb0299c.tar.zst
dexon-sol-tools-66db021900cf4ac824635512052afb2bddb0299c.zip
Postfix variable names with 'ifExists'
Diffstat (limited to 'src/contract_wrappers/ether_token_wrapper.ts')
-rw-r--r--src/contract_wrappers/ether_token_wrapper.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/contract_wrappers/ether_token_wrapper.ts b/src/contract_wrappers/ether_token_wrapper.ts
index efe3fe06c..f15e766f0 100644
--- a/src/contract_wrappers/ether_token_wrapper.ts
+++ b/src/contract_wrappers/ether_token_wrapper.ts
@@ -13,11 +13,11 @@ import {artifacts} from '../artifacts';
export class EtherTokenWrapper extends ContractWrapper {
private _etherTokenContractIfExists?: EtherTokenContract;
private _tokenWrapper: TokenWrapper;
- private _contractAddress?: string;
- constructor(web3Wrapper: Web3Wrapper, tokenWrapper: TokenWrapper, contractAddress?: string) {
+ private _contractAddressIfExists?: string;
+ constructor(web3Wrapper: Web3Wrapper, tokenWrapper: TokenWrapper, contractAddressIfExists?: string) {
super(web3Wrapper);
this._tokenWrapper = tokenWrapper;
- this._contractAddress = contractAddress;
+ this._contractAddressIfExists = contractAddressIfExists;
}
/**
* Deposit ETH into the Wrapped ETH smart contract and issues the equivalent number of wrapped ETH tokens
@@ -78,7 +78,7 @@ export class EtherTokenWrapper extends ContractWrapper {
return this._etherTokenContractIfExists;
}
const contractInstance = await this._instantiateContractIfExistsAsync<EtherTokenContract>(
- artifacts.EtherTokenArtifact, this._contractAddress,
+ artifacts.EtherTokenArtifact, this._contractAddressIfExists,
);
this._etherTokenContractIfExists = contractInstance as EtherTokenContract;
return this._etherTokenContractIfExists;