diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-19 19:03:52 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-19 19:10:44 +0800 |
commit | 156dae1d33bd0a19c764262fbf0c9d6743425fc6 (patch) | |
tree | 089c743f946ff175838b4ee3142d5ead1aecdc0c | |
parent | 436d78eb93792e352049c790b10fbeddde199cab (diff) | |
download | dexon-sol-tools-156dae1d33bd0a19c764262fbf0c9d6743425fc6.tar dexon-sol-tools-156dae1d33bd0a19c764262fbf0c9d6743425fc6.tar.gz dexon-sol-tools-156dae1d33bd0a19c764262fbf0c9d6743425fc6.tar.bz2 dexon-sol-tools-156dae1d33bd0a19c764262fbf0c9d6743425fc6.tar.lz dexon-sol-tools-156dae1d33bd0a19c764262fbf0c9d6743425fc6.tar.xz dexon-sol-tools-156dae1d33bd0a19c764262fbf0c9d6743425fc6.tar.zst dexon-sol-tools-156dae1d33bd0a19c764262fbf0c9d6743425fc6.zip |
Fix comments
-rw-r--r-- | packages/0x.js/src/contract_wrappers/exchange_wrapper.ts | 2 | ||||
-rw-r--r-- | packages/0x.js/src/contract_wrappers/token_wrapper.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts b/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts index 274f217c6..df793aa06 100644 --- a/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts +++ b/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts @@ -616,7 +616,7 @@ export class ExchangeWrapper extends ContractWrapper { /** * Gets historical logs without creating a subscription * @param eventName The exchange contract event you would like to subscribe to. - * @param blockRange Subscriptions options that let you configure the subscription. + * @param blockRange Block range to get logs from. * @param indexFilterValues An object where the keys are indexed args returned by the event and * the value is the value you are interested in. E.g `{_from: aUserAddressHex}` * @return Array of logs that match the parameters diff --git a/packages/0x.js/src/contract_wrappers/token_wrapper.ts b/packages/0x.js/src/contract_wrappers/token_wrapper.ts index 419b33285..a9eac10e0 100644 --- a/packages/0x.js/src/contract_wrappers/token_wrapper.ts +++ b/packages/0x.js/src/contract_wrappers/token_wrapper.ts @@ -291,7 +291,7 @@ export class TokenWrapper extends ContractWrapper { * Gets historical logs without creating a subscription * @param tokenAddress An address of the token that emmited the logs. * @param eventName The token contract event you would like to subscribe to. - * @param blockRange Subscriptions options that let you configure the subscription. + * @param blockRange Block range to get logs from. * @param indexFilterValues An object where the keys are indexed args returned by the event and * the value is the value you are interested in. E.g `{_from: aUserAddressHex}` * @return Array of logs that match the parameters |