aboutsummaryrefslogtreecommitdiffstats
path: root/src/0x.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-11-11 04:09:22 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-11-13 09:06:12 +0800
commit9d3fe1258a53d9e2169b3d733f64d3931fefcce0 (patch)
tree4597407f99837d05cb6284f0cbfc79c04c1f6b6a /src/0x.ts
parente72ba39c41a86cd17a3115426ad579efbfe11ddc (diff)
downloaddexon-sol-tools-9d3fe1258a53d9e2169b3d733f64d3931fefcce0.tar
dexon-sol-tools-9d3fe1258a53d9e2169b3d733f64d3931fefcce0.tar.gz
dexon-sol-tools-9d3fe1258a53d9e2169b3d733f64d3931fefcce0.tar.bz2
dexon-sol-tools-9d3fe1258a53d9e2169b3d733f64d3931fefcce0.tar.lz
dexon-sol-tools-9d3fe1258a53d9e2169b3d733f64d3931fefcce0.tar.xz
dexon-sol-tools-9d3fe1258a53d9e2169b3d733f64d3931fefcce0.tar.zst
dexon-sol-tools-9d3fe1258a53d9e2169b3d733f64d3931fefcce0.zip
Create stores in orderStateWatcher
Diffstat (limited to 'src/0x.ts')
-rw-r--r--src/0x.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/0x.ts b/src/0x.ts
index a1841eaa8..fe765bbbe 100644
--- a/src/0x.ts
+++ b/src/0x.ts
@@ -205,9 +205,8 @@ export class ZeroEx {
const etherTokenContractAddressIfExists = _.isUndefined(config) ? undefined : config.etherTokenContractAddress;
this.etherToken = new EtherTokenWrapper(this._web3Wrapper, this.token, etherTokenContractAddressIfExists);
const orderWatcherConfig = _.isUndefined(config) ? undefined : config.orderWatcherConfig;
- const orderStateUtils = new OrderStateUtils(this.token, this.exchange);
this.orderStateWatcher = new OrderStateWatcher(
- this._web3Wrapper, this._abiDecoder, orderStateUtils, orderWatcherConfig,
+ this._web3Wrapper, this._abiDecoder, this.token, this.exchange, orderWatcherConfig,
);
}
/**