From a9769ef296349cc8552cf7b76e1cdbaa94cce58e Mon Sep 17 00:00:00 2001 From: Josh Harvey Date: Tue, 26 Sep 2017 18:48:41 +0100 Subject: [PATCH] use light mode for ethereum --- lib/blockchain/ethereum.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/blockchain/ethereum.js b/lib/blockchain/ethereum.js index 0f629766..0b00f6a3 100644 --- a/lib/blockchain/ethereum.js +++ b/lib/blockchain/ethereum.js @@ -7,6 +7,6 @@ module.exports = {setup} function setup (dataDir) { const coinRec = coinUtils.getCryptoCurrency('ETH') common.firewall([coinRec.defaultPort]) - const cmd = `/usr/local/bin/${coinRec.daemon} --datadir "${dataDir}" --cache 500 --rpc` + const cmd = `/usr/local/bin/${coinRec.daemon} --datadir "${dataDir}" --syncmode="light" --cache 500 --rpc` common.writeSupervisorConfig(coinRec, cmd) }