diff options
-rw-r--r-- | src/order_watcher/order_state_watcher.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/order_watcher/order_state_watcher.ts b/src/order_watcher/order_state_watcher.ts index f6ce4edb7..000e92773 100644 --- a/src/order_watcher/order_state_watcher.ts +++ b/src/order_watcher/order_state_watcher.ts @@ -82,8 +82,8 @@ export class OrderStateWatcher { /** * Starts an orderStateWatcher subscription. The callback will be called every time a watched order's * backing blockchain state has changed. This is a call-to-action for the caller to re-validate the order. - * @param callback Receives the orderHash of the order that should be re-validated, together. - * with all the order-relevant blockchain state needed to re-validate the order + * @param callback Receives the orderHash of the order that should be re-validated, together + * with all the order-relevant blockchain state needed to re-validate the order. * @param numConfirmations Number of confirmed blocks deeps you want to run the orderWatcher from. Passing * is 0 will watch the backing node's mempool, 3 will emit events when blockchain * state relevant to a watched order changed 3 blocks ago. @@ -98,7 +98,6 @@ export class OrderStateWatcher { } /** * Ends an orderStateWatcher subscription. - * @param signedOrder The order you wish to stop watching. */ public unsubscribe(): void { delete this._callbackIfExistsAsync; |