diff options
author | Fabio Berger <me@fabioberger.com> | 2018-07-26 00:47:40 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-07-26 00:47:40 +0800 |
commit | 2c62504b79315099346665225d3637662ff87db6 (patch) | |
tree | e87ccdb81fb53de87c60ae45f448b8966b21d9ee /packages/order-watcher/src/order_watcher | |
parent | 67303106dc35fa08284f90578c7653bcd77f431f (diff) | |
download | dexon-0x-contracts-2c62504b79315099346665225d3637662ff87db6.tar dexon-0x-contracts-2c62504b79315099346665225d3637662ff87db6.tar.gz dexon-0x-contracts-2c62504b79315099346665225d3637662ff87db6.tar.bz2 dexon-0x-contracts-2c62504b79315099346665225d3637662ff87db6.tar.lz dexon-0x-contracts-2c62504b79315099346665225d3637662ff87db6.tar.xz dexon-0x-contracts-2c62504b79315099346665225d3637662ff87db6.tar.zst dexon-0x-contracts-2c62504b79315099346665225d3637662ff87db6.zip |
Replace hard-coded compact_artifacts with migrations artifacts
Diffstat (limited to 'packages/order-watcher/src/order_watcher')
-rw-r--r-- | packages/order-watcher/src/order_watcher/order_watcher.ts | 6 |
1 files changed, 3 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 2dfbd4230..e2d6fc270 100644 --- a/packages/order-watcher/src/order_watcher/order_watcher.ts +++ b/packages/order-watcher/src/order_watcher/order_watcher.ts @@ -102,9 +102,9 @@ export class OrderWatcher { this._provider = provider; this._collisionResistantAbiDecoder = new CollisionResistanceAbiDecoder( - artifacts.ERC20Token.abi, - artifacts.ERC721Token.abi, - [artifacts.EtherToken.abi, artifacts.Exchange.abi], + artifacts.ERC20Token.compilerOutput.abi, + artifacts.ERC721Token.compilerOutput.abi, + [artifacts.EtherToken.compilerOutput.abi, artifacts.Exchange.compilerOutput.abi], ); const contractWrappers = new ContractWrappers(provider, { networkId }); this._eventWatcher = new EventWatcher(provider, config.eventPollingIntervalMs, STATE_LAYER, config.isVerbose); |