diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-31 16:32:59 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-31 16:32:59 +0800 |
commit | 274fe87da754ac45cecd6c19123a1c144d4c4080 (patch) | |
tree | 1859b12da9dd4f1764da7df6269d6ba290df23a5 /src/contract_wrappers/token_wrapper.ts | |
parent | 5e6818d3eff89347e704edde4bfee72066caedb1 (diff) | |
download | dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.gz dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.bz2 dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.lz dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.xz dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.zst dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.zip |
Add full stop to comments
Diffstat (limited to 'src/contract_wrappers/token_wrapper.ts')
-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 59dfc0667..9e496b648 100644 --- a/src/contract_wrappers/token_wrapper.ts +++ b/src/contract_wrappers/token_wrapper.ts @@ -20,7 +20,7 @@ export class TokenWrapper extends ContractWrapper { this.tokenContractsByAddress = {}; } /** - * Returns an owner's ERC20 token balance + * Returns an owner's ERC20 token balance. */ public async getBalanceAsync(tokenAddress: string, ownerAddress: string): Promise<BigNumber.BigNumber> { assert.isETHAddressHex('ownerAddress', ownerAddress); @@ -35,7 +35,7 @@ export class TokenWrapper extends ContractWrapper { } /** * Retrieves the allowance in baseUnits of the ERC20 token set to the 0x proxy contract - * by an owner address + * by an owner address. */ public async getProxyAllowanceAsync(tokenAddress: string, ownerAddress: string) { assert.isETHAddressHex('ownerAddress', ownerAddress); |