Fix templates

This commit is contained in:
Leonid Logvinov
2018-05-10 16:57:51 +02:00
parent f854f3ee2b
commit 2e1c2d9dfe
7 changed files with 8 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ import * as path from 'path';
import { runMigrationsAsync } from './migration';
(async () => {
const defaults = {
const txDefaults = {
from: devConstants.TESTRPC_FIRST_ADDRESS,
};
const providerConfigs = { shouldUseInProcessGanache: false };

View File

@@ -3,7 +3,8 @@ import { BigNumber, NULL_BYTES } from '@0xproject/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import * as _ from 'lodash';
import { artifacts, ArtifactWriter } from './artifacts';
import { ArtifactWriter } from './artifact_writer';
import { artifacts } from './artifacts';
import { DummyTokenContract } from './contract_wrappers/dummy_token';
import { ExchangeContract } from './contract_wrappers/exchange';
import { MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddressContract } from './contract_wrappers/multi_sig_wallet_with_time_lock_except_remove_authorized_address';