aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/core/test/utils/fill_order_combinatorial_utils.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-12-05 16:39:10 +0800
committerGitHub <noreply@github.com>2018-12-05 16:39:10 +0800
commitb411e2250aed82b87d1cbebf5cf805d794ddbdb7 (patch)
tree733d53c79c474c96a4696593bedc19dc2ee5f093 /contracts/core/test/utils/fill_order_combinatorial_utils.ts
parent740b73276f67733226542fb219d18cf7d513bdaa (diff)
parentb1a8a5521e69bcd402cd18358bb177c402ee3362 (diff)
downloaddexon-sol-tools-b411e2250aed82b87d1cbebf5cf805d794ddbdb7.tar
dexon-sol-tools-b411e2250aed82b87d1cbebf5cf805d794ddbdb7.tar.gz
dexon-sol-tools-b411e2250aed82b87d1cbebf5cf805d794ddbdb7.tar.bz2
dexon-sol-tools-b411e2250aed82b87d1cbebf5cf805d794ddbdb7.tar.lz
dexon-sol-tools-b411e2250aed82b87d1cbebf5cf805d794ddbdb7.tar.xz
dexon-sol-tools-b411e2250aed82b87d1cbebf5cf805d794ddbdb7.tar.zst
dexon-sol-tools-b411e2250aed82b87d1cbebf5cf805d794ddbdb7.zip
Merge pull request #1384 from 0xProject/feature/contracts-monorepo-3
Contracts monorepo 4 feat
Diffstat (limited to 'contracts/core/test/utils/fill_order_combinatorial_utils.ts')
-rw-r--r--contracts/core/test/utils/fill_order_combinatorial_utils.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/contracts/core/test/utils/fill_order_combinatorial_utils.ts b/contracts/core/test/utils/fill_order_combinatorial_utils.ts
index 6372ad29a..5d0ea07a8 100644
--- a/contracts/core/test/utils/fill_order_combinatorial_utils.ts
+++ b/contracts/core/test/utils/fill_order_combinatorial_utils.ts
@@ -1,3 +1,4 @@
+import { artifacts as libsArtifacts, TestLibsContract } from '@0x/contracts-libs';
import {
AllowanceAmountScenario,
AssetDataScenario,
@@ -32,7 +33,6 @@ import * as _ from 'lodash';
import 'make-promises-safe';
import { ExchangeContract, ExchangeFillEventArgs } from '../../generated-wrappers/exchange';
-import { TestLibsContract } from '../../generated-wrappers/test_libs';
import { artifacts } from '../../src/artifacts';
import { AssetWrapper } from './asset_wrapper';
@@ -131,7 +131,11 @@ export async function fillOrderCombinatorialUtilsFactoryAsync(
exchangeContract.address,
);
- const testLibsContract = await TestLibsContract.deployFrom0xArtifactAsync(artifacts.TestLibs, provider, txDefaults);
+ const testLibsContract = await TestLibsContract.deployFrom0xArtifactAsync(
+ libsArtifacts.TestLibs,
+ provider,
+ txDefaults,
+ );
const fillOrderCombinatorialUtils = new FillOrderCombinatorialUtils(
orderFactory,