aboutsummaryrefslogtreecommitdiffstats
path: root/packages/metacoin/test/utils/deployer.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/metacoin/test/utils/deployer.ts')
-rw-r--r--packages/metacoin/test/utils/deployer.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/metacoin/test/utils/deployer.ts b/packages/metacoin/test/utils/deployer.ts
index d7dbc6d36..7916c8541 100644
--- a/packages/metacoin/test/utils/deployer.ts
+++ b/packages/metacoin/test/utils/deployer.ts
@@ -2,12 +2,13 @@ import { Deployer } from '@0xproject/deployer';
import { devConstants } from '@0xproject/dev-utils';
import * as path from 'path';
+import { config } from './config';
import { web3Wrapper } from './web3_wrapper';
const deployerOpts = {
web3Provider: web3Wrapper.getProvider(),
- artifactsDir: path.resolve('artifacts'),
- networkId: 50,
+ artifactsDir: config.artifactsDir,
+ networkId: config.networkId,
defaults: {
from: devConstants.TESTRPC_FIRST_ADDRESS,
},