From 02a52f718fb08b0e923af82fd2f176b0e5db50b3 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Thu, 1 Oct 2015 22:37:47 -0400 Subject: [PATCH] change enodes config to boot --- lib/blockchain.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/blockchain.js b/lib/blockchain.js index e869136c1..c46878312 100644 --- a/lib/blockchain.js +++ b/lib/blockchain.js @@ -75,12 +75,13 @@ Blockchain.prototype.run_command = function(address, use_tmp) { cmd += "--unlock " + address + " "; } - if (config.bootNodes.init == true){ + if (config.bootNodes.boot == true){ cmd += "--bootnodes "; for (var i = 0; i < config.bootNodes.enodes.length; i++){ cmd += config.bootNodes.enodes[i] + " "; } } + if (config.console_toggle) { cmd += "console"; }