simulator -- defaultHost, dockerHostSwap
This commit is contained in:
parent
931f56db7d
commit
a29d78cc5a
|
@ -2,6 +2,7 @@ let shelljs = require('shelljs');
|
||||||
let proxy = require('../core/proxy');
|
let proxy = require('../core/proxy');
|
||||||
const Ipc = require('../core/ipc');
|
const Ipc = require('../core/ipc');
|
||||||
const constants = require('../constants.json');
|
const constants = require('../constants.json');
|
||||||
|
const {defaultHost, dockerHostSwap} = require('../utils/host');
|
||||||
|
|
||||||
class Simulator {
|
class Simulator {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
|
@ -15,7 +16,7 @@ class Simulator {
|
||||||
const ganache = path.join(__dirname, '../../node_modules/.bin/ganache-cli');
|
const ganache = path.join(__dirname, '../../node_modules/.bin/ganache-cli');
|
||||||
|
|
||||||
let useProxy = this.blockchainConfig.proxy || false;
|
let useProxy = this.blockchainConfig.proxy || false;
|
||||||
let host = (options.host || this.blockchainConfig.rpcHost || 'localhost');
|
let host = (dockerHostSwap(options.host || this.blockchainConfig.rpcHost) || defaultHost);
|
||||||
let port = (options.port || this.blockchainConfig.rpcPort || 8545);
|
let port = (options.port || this.blockchainConfig.rpcPort || 8545);
|
||||||
|
|
||||||
cmds.push("-p " + (port + (useProxy ? constants.blockchain.servicePortOnProxy : 0)));
|
cmds.push("-p " + (port + (useProxy ? constants.blockchain.servicePortOnProxy : 0)));
|
||||||
|
|
Loading…
Reference in New Issue