From abb3d4e327de0ab313a3cd3f434b6580f4147ed2 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Fri, 29 Jun 2018 16:42:01 -0400 Subject: [PATCH] fix syncmode --- lib/cmds/blockchain/geth_commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmds/blockchain/geth_commands.js b/lib/cmds/blockchain/geth_commands.js index 749c8ee9a..573edf0ec 100644 --- a/lib/cmds/blockchain/geth_commands.js +++ b/lib/cmds/blockchain/geth_commands.js @@ -21,7 +21,7 @@ class GethCommands { } if (config.syncMode || config.syncmode) { - cmd.push("--syncmode=" + (config.syncMode || config.syncmode)); + cmd.push("--syncmode=" + config.syncmode || config.syncMode); } if (config.account && config.account.password) {