diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-03-12 10:19:39 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-03-12 10:37:30 +0800 |
commit | c4a18ee64b58217dd9733c9b9edbfe592fc1cb8d (patch) | |
tree | e51b2242419174ae7e77a8eaea74918607be070e /packages/deployer/test/deploy_test.ts | |
parent | 7143996d265cde74c473467439158ae557d9f8a8 (diff) | |
download | dexon-0x-contracts-c4a18ee64b58217dd9733c9b9edbfe592fc1cb8d.tar.gz dexon-0x-contracts-c4a18ee64b58217dd9733c9b9edbfe592fc1cb8d.tar.zst dexon-0x-contracts-c4a18ee64b58217dd9733c9b9edbfe592fc1cb8d.zip |
Make Deployer configurable by jsonrpcUrl instead of jsonrpcPort
Diffstat (limited to 'packages/deployer/test/deploy_test.ts')
-rw-r--r-- | packages/deployer/test/deploy_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/deployer/test/deploy_test.ts b/packages/deployer/test/deploy_test.ts index 905e5673b..26ce337ef 100644 --- a/packages/deployer/test/deploy_test.ts +++ b/packages/deployer/test/deploy_test.ts @@ -24,7 +24,7 @@ const compiler = new Compiler(compilerOpts); const deployerOpts = { artifactsDir, networkId: constants.networkId, - jsonrpcPort: constants.jsonrpcPort, + jsonrpcUrl: constants.jsonrpcUrl, defaults: { gasPrice: constants.gasPrice, }, |