From 72ea7a32b7b209a55e98f92d3087af8fa0e7b969 Mon Sep 17 00:00:00 2001 From: Josh Harvey Date: Wed, 8 Nov 2017 21:38:43 +0000 Subject: [PATCH] use fast syncmode for ETH --- 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 0b00f6a3..7d5f2bc3 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}" --syncmode="light" --cache 500 --rpc` + const cmd = `/usr/local/bin/${coinRec.daemon} --datadir "${dataDir}" --syncmode="fast" --cache 500 --rpc` common.writeSupervisorConfig(coinRec, cmd) }