fix syncmode

This commit is contained in:
Jonathan Rainville 2018-06-29 16:42:01 -04:00 committed by Iuri Matias
parent 92d5fc8e1e
commit abb3d4e327

View File

@ -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) {