Move DeploymentManager back into test dir since only used in integrations package

This commit is contained in:
fabioberger
2019-11-12 16:55:36 +00:00
parent 9d468e2383
commit 8bc5faff3c
14 changed files with 12 additions and 13 deletions

View File

@@ -3,7 +3,7 @@ import { artifacts, ForwarderContract } from '@0x/contracts-exchange-forwarder';
import { BlockchainTestsEnvironment } from '@0x/contracts-test-utils';
import { assetDataUtils } from '@0x/order-utils';
import { DeploymentManager } from '../../src/deployment_manager';
import { DeploymentManager } from '../deployment_manager';
/**
* Deploys a Forwarder contract configured to work alongside the provided `deployment`.

View File

@@ -20,8 +20,8 @@ import {
import { ForwarderRevertErrors } from '@0x/order-utils';
import { BigNumber } from '@0x/utils';
import { DeploymentManager } from '../../src/deployment_manager';
import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors';
import { DeploymentManager } from '../deployment_manager';
import { deployForwarderAsync } from './deploy_forwarder';
import { ForwarderTestFactory } from './forwarder_test_factory';

View File

@@ -6,8 +6,8 @@ import { OrderInfo, SignedOrder } from '@0x/types';
import { BigNumber, RevertError } from '@0x/utils';
import { TransactionReceiptWithDecodedLogs } from 'ethereum-types';
import { DeploymentManager } from '../../src/deployment_manager';
import { Actor, FeeRecipient, Maker } from '../actors';
import { DeploymentManager } from '../deployment_manager';
// Necessary bookkeeping to validate Forwarder results
interface ForwarderFillState {