diff options
Diffstat (limited to 'packages/deployer/test')
-rw-r--r-- | packages/deployer/test/deploy_test.ts | 2 | ||||
-rw-r--r-- | packages/deployer/test/util/constants.ts | 2 |
2 files changed, 2 insertions, 2 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, }, diff --git a/packages/deployer/test/util/constants.ts b/packages/deployer/test/util/constants.ts index adb13f330..7b6960359 100644 --- a/packages/deployer/test/util/constants.ts +++ b/packages/deployer/test/util/constants.ts @@ -2,7 +2,7 @@ import { BigNumber } from '@0xproject/utils'; export const constants = { networkId: 0, - jsonrpcPort: 8545, + jsonrpcUrl: 'http://localhost:8545', optimizerEnabled: 0, gasPrice: new BigNumber(20000000000), timeoutMs: 20000, |