From a5bc17f0de917be960679feccb31373aaf814c72 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Sun, 30 Oct 2016 20:15:57 -0400 Subject: [PATCH] use config port when calling geth --- lib/geth_commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/geth_commands.js b/lib/geth_commands.js index 73de5333..46e0e1ad 100644 --- a/lib/geth_commands.js +++ b/lib/geth_commands.js @@ -80,7 +80,7 @@ GethCommands.prototype.mainCommand = function(address) { cmd += this.commonOptions(); - cmd += "--port " + "30303" + " "; + cmd += "--port " + config.port + " "; cmd += "--rpc "; cmd += "--rpcport " + config.rpcPort + " "; cmd += "--rpcaddr " + config.rpcHost + " ";