aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/order_watcher/event_watcher.ts
diff options
context:
space:
mode:
authorAra Kevonian <=>2018-03-31 00:59:57 +0800
committerAra Kevonian <=>2018-03-31 00:59:57 +0800
commit3e285c0ef109c380f5fcc872555d4cdaeee79384 (patch)
tree3ff266d26d3f3e3c1cd855607536b87e5b5a9cd2 /packages/0x.js/src/order_watcher/event_watcher.ts
parenta322148631e910466d1a08dce55b5e46e76f8863 (diff)
downloaddexon-sol-tools-3e285c0ef109c380f5fcc872555d4cdaeee79384.tar
dexon-sol-tools-3e285c0ef109c380f5fcc872555d4cdaeee79384.tar.gz
dexon-sol-tools-3e285c0ef109c380f5fcc872555d4cdaeee79384.tar.bz2
dexon-sol-tools-3e285c0ef109c380f5fcc872555d4cdaeee79384.tar.lz
dexon-sol-tools-3e285c0ef109c380f5fcc872555d4cdaeee79384.tar.xz
dexon-sol-tools-3e285c0ef109c380f5fcc872555d4cdaeee79384.tar.zst
dexon-sol-tools-3e285c0ef109c380f5fcc872555d4cdaeee79384.zip
OrderStateWatcher fixes for PR #488
Diffstat (limited to 'packages/0x.js/src/order_watcher/event_watcher.ts')
-rw-r--r--packages/0x.js/src/order_watcher/event_watcher.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/order_watcher/event_watcher.ts b/packages/0x.js/src/order_watcher/event_watcher.ts
index deb1ffbff..d01542a8c 100644
--- a/packages/0x.js/src/order_watcher/event_watcher.ts
+++ b/packages/0x.js/src/order_watcher/event_watcher.ts
@@ -23,7 +23,7 @@ export class EventWatcher {
private _intervalIdIfExists?: NodeJS.Timer;
private _lastEvents: LogEntry[] = [];
private _stateLayer: BlockParamLiteral;
- constructor(web3Wrapper: Web3Wrapper, pollingIntervalIfExistsMs: undefined | number, stateLayer: BlockParamLiteral = BlockParamLiteral.Pending) {
+ constructor(web3Wrapper: Web3Wrapper, pollingIntervalIfExistsMs: undefined | number, stateLayer: BlockParamLiteral = BlockParamLiteral.Latest) {
this._web3Wrapper = web3Wrapper;
this._stateLayer = stateLayer;
this._pollingIntervalMs = _.isUndefined(pollingIntervalIfExistsMs)