use config port when calling geth

This commit is contained in:
Iuri Matias 2016-10-30 20:15:57 -04:00
parent e58671e742
commit a5bc17f0de
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ GethCommands.prototype.mainCommand = function(address) {
cmd += this.commonOptions(); cmd += this.commonOptions();
cmd += "--port " + "30303" + " "; cmd += "--port " + config.port + " ";
cmd += "--rpc "; cmd += "--rpc ";
cmd += "--rpcport " + config.rpcPort + " "; cmd += "--rpcport " + config.rpcPort + " ";
cmd += "--rpcaddr " + config.rpcHost + " "; cmd += "--rpcaddr " + config.rpcHost + " ";