diff options
author | Fabio Berger <me@fabioberger.com> | 2017-06-03 02:33:58 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-06-03 02:33:58 +0800 |
commit | bae4b1ee1b991340df5bf2c5317b7af7088cedd3 (patch) | |
tree | d94ab82775181d9e702b23538657524059727963 /src/contract_wrappers | |
parent | 054797fa5185acb352a8a95d341c6af3f40346da (diff) | |
download | dexon-sol-tools-bae4b1ee1b991340df5bf2c5317b7af7088cedd3.tar dexon-sol-tools-bae4b1ee1b991340df5bf2c5317b7af7088cedd3.tar.gz dexon-sol-tools-bae4b1ee1b991340df5bf2c5317b7af7088cedd3.tar.bz2 dexon-sol-tools-bae4b1ee1b991340df5bf2c5317b7af7088cedd3.tar.lz dexon-sol-tools-bae4b1ee1b991340df5bf2c5317b7af7088cedd3.tar.xz dexon-sol-tools-bae4b1ee1b991340df5bf2c5317b7af7088cedd3.tar.zst dexon-sol-tools-bae4b1ee1b991340df5bf2c5317b7af7088cedd3.zip |
Fix comment
Diffstat (limited to 'src/contract_wrappers')
-rw-r--r-- | src/contract_wrappers/token_wrapper.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contract_wrappers/token_wrapper.ts b/src/contract_wrappers/token_wrapper.ts index 55e1e364b..5c556dd4f 100644 --- a/src/contract_wrappers/token_wrapper.ts +++ b/src/contract_wrappers/token_wrapper.ts @@ -115,7 +115,7 @@ export class TokenWrapper extends ContractWrapper { /** * Transfers `amountInBaseUnits` ERC20 tokens from `fromAddress` to `toAddress`. * Requires the fromAddress to have sufficient funds and to have approved an allowance of - * `amountInBaseUnits` for toAddress. + * `amountInBaseUnits` for senderAddress. */ public async transferFromAsync(tokenAddress: string, fromAddress: string, toAddress: string, senderAddress: string, amountInBaseUnits: BigNumber.BigNumber): |