aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-watcher/src/order_watcher/order_watcher.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-17 17:57:52 +0800
committerFabio Berger <me@fabioberger.com>2018-07-17 17:57:52 +0800
commit766ac3f1febcb6f6e4f6c20198283f01b278f671 (patch)
treec3ec88e1e85ac133e06231c294a0fefaa3c990e1 /packages/order-watcher/src/order_watcher/order_watcher.ts
parent151ce6e3c77e43659899ce299ac9f1b37cf6a042 (diff)
downloaddexon-sol-tools-766ac3f1febcb6f6e4f6c20198283f01b278f671.tar
dexon-sol-tools-766ac3f1febcb6f6e4f6c20198283f01b278f671.tar.gz
dexon-sol-tools-766ac3f1febcb6f6e4f6c20198283f01b278f671.tar.bz2
dexon-sol-tools-766ac3f1febcb6f6e4f6c20198283f01b278f671.tar.lz
dexon-sol-tools-766ac3f1febcb6f6e4f6c20198283f01b278f671.tar.xz
dexon-sol-tools-766ac3f1febcb6f6e4f6c20198283f01b278f671.tar.zst
dexon-sol-tools-766ac3f1febcb6f6e4f6c20198283f01b278f671.zip
Remove blockRetention config
Diffstat (limited to 'packages/order-watcher/src/order_watcher/order_watcher.ts')
-rw-r--r--packages/order-watcher/src/order_watcher/order_watcher.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/order-watcher/src/order_watcher/order_watcher.ts b/packages/order-watcher/src/order_watcher/order_watcher.ts
index 2fe012593..b09ba8d9d 100644
--- a/packages/order-watcher/src/order_watcher/order_watcher.ts
+++ b/packages/order-watcher/src/order_watcher/order_watcher.ts
@@ -61,7 +61,6 @@ interface OrderStateByOrderHash {
// tslint:disable-next-line:custom-no-magic-numbers
const DEFAULT_CLEANUP_JOB_INTERVAL_MS = 1000 * 60 * 60; // 1h
-const DEFAULT_BLOCK_RETENTION = 100;
/**
* This class includes all the functionality related to watching a set of orders
@@ -95,8 +94,7 @@ export class OrderWatcher {
const stateLayer =
_.isUndefined(config) || _.isUndefined(config.stateLayer) ? BlockParamLiteral.Latest : config.stateLayer;
const isVerbose = !_.isUndefined(config) && !_.isUndefined(config.isVerbose) ? config.isVerbose : false;
- const blockRetention = !_.isUndefined(config) && !_.isUndefined(config.blockRetention) ? config.blockRetention : DEFAULT_BLOCK_RETENTION;
- this._eventWatcher = new EventWatcher(this._web3Wrapper, pollingIntervalIfExistsMs, stateLayer, blockRetention, isVerbose);
+ this._eventWatcher = new EventWatcher(this._web3Wrapper, pollingIntervalIfExistsMs, stateLayer, isVerbose);
this._balanceAndProxyAllowanceLazyStore = new BalanceAndProxyAllowanceLazyStore(
this._contractWrappers.token,
stateLayer,