diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-11 23:21:40 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-11-11 23:21:40 +0800 |
commit | 252fdd03d718173a6c1ffa75c3b18d6f1a7d051c (patch) | |
tree | a1a866b81c204120842ca1325e703b701764f29b /src/order_watcher | |
parent | 0fe5c5dac33ec11bc3517f16f1fd613d720c8b8d (diff) | |
download | dexon-sol-tools-252fdd03d718173a6c1ffa75c3b18d6f1a7d051c.tar dexon-sol-tools-252fdd03d718173a6c1ffa75c3b18d6f1a7d051c.tar.gz dexon-sol-tools-252fdd03d718173a6c1ffa75c3b18d6f1a7d051c.tar.bz2 dexon-sol-tools-252fdd03d718173a6c1ffa75c3b18d6f1a7d051c.tar.lz dexon-sol-tools-252fdd03d718173a6c1ffa75c3b18d6f1a7d051c.tar.xz dexon-sol-tools-252fdd03d718173a6c1ffa75c3b18d6f1a7d051c.tar.zst dexon-sol-tools-252fdd03d718173a6c1ffa75c3b18d6f1a7d051c.zip |
Fix comment
Diffstat (limited to 'src/order_watcher')
-rw-r--r-- | src/order_watcher/order_state_watcher.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/order_watcher/order_state_watcher.ts b/src/order_watcher/order_state_watcher.ts index f06e32a32..b92aa8cab 100644 --- a/src/order_watcher/order_state_watcher.ts +++ b/src/order_watcher/order_state_watcher.ts @@ -94,9 +94,6 @@ export class OrderStateWatcher { * 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 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. */ public subscribe(callback: OnOrderStateChangeCallback): void { assert.isFunction('callback', callback); |