Fix comments

This commit is contained in:
Leonid Logvinov
2017-10-05 15:26:38 +03:00
parent 118381c1d1
commit 553cbb25f4
2 changed files with 2 additions and 2 deletions

View File

@@ -624,7 +624,7 @@ export class ExchangeWrapper extends ContractWrapper {
* @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 `{maker: aUserAddressHex}`
* @param callback Callback that gets called when a log is added/removed
* @return ContractEventEmitter object
* @return Subscription token used later to unsubscribe
*/
public async subscribeAsync(eventName: ExchangeEvents, indexFilterValues: IndexedFilterValues,
callback: EventCallback): Promise<string> {

View File

@@ -251,7 +251,7 @@ export class TokenWrapper extends ContractWrapper {
* @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 `{maker: aUserAddressHex}`
* @param callback Callback that gets called when a log is added/removed
* @return ContractEventEmitter object
* @return Subscription token used later to unsubscribe
*/
public subscribe(tokenAddress: string, eventName: TokenEvents, indexFilterValues: IndexedFilterValues,
callback: EventCallback): string {