diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-08 22:24:07 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-08 22:24:07 +0800 |
commit | 217c16027e7f8acdb0909989c4d15314c0eb1a97 (patch) | |
tree | d9eb799dbd3ce39094aa418517c39cbde459dd0c /src/contract_wrappers/exchange_wrapper.ts | |
parent | be0b9a1d7c9428fc35b3fdf3cd2a730e9bd5a606 (diff) | |
download | dexon-sol-tools-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar dexon-sol-tools-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.gz dexon-sol-tools-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.bz2 dexon-sol-tools-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.lz dexon-sol-tools-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.xz dexon-sol-tools-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.zst dexon-sol-tools-217c16027e7f8acdb0909989c4d15314c0eb1a97.zip |
Replace placeholders with actual coments
Diffstat (limited to 'src/contract_wrappers/exchange_wrapper.ts')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index c6632175c..73c4d935b 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -86,7 +86,7 @@ export class ExchangeWrapper extends ContractWrapper { * subtracting the unavailable amount from the total order takerAmount. * @param orderHash The hex encoded orderHash for which you would like to retrieve the * unavailable takerAmount. - * @param methodOpts ${FABIOS_COMMENT} + * @param methodOpts Optional arguments this method accepts. * @return The amount of the order (in taker tokens) that has either been filled or canceled. */ public async getUnavailableTakerAmountAsync(orderHash: string, @@ -105,7 +105,7 @@ export class ExchangeWrapper extends ContractWrapper { /** * Retrieve the takerAmount of an order that has already been filled. * @param orderHash The hex encoded orderHash for which you would like to retrieve the filled takerAmount. - * @param methodOpts ${FABIOS_COMMENT} + * @param methodOpts Optional arguments this method accepts. * @return The amount of the order (in taker tokens) that has already been filled. */ public async getFilledTakerAmountAsync(orderHash: string, methodOpts?: MethodOpts): Promise<BigNumber.BigNumber> { @@ -122,7 +122,7 @@ export class ExchangeWrapper extends ContractWrapper { * Retrieve the takerAmount of an order that has been cancelled. * @param orderHash The hex encoded orderHash for which you would like to retrieve the * cancelled takerAmount. - * @param methodOpts ${FABIOS_COMMENT} + * @param methodOpts Optional arguments this method accepts. * @return The amount of the order (in taker tokens) that has been cancelled. */ public async getCanceledTakerAmountAsync(orderHash: string, methodOpts?: MethodOpts): Promise<BigNumber.BigNumber> { |