From 342898fdd78645b57334e2e12786bc3dff99c32f Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 12 Apr 2017 01:20:04 +0200 Subject: [PATCH] eth: make fast sync the default mode --- eth/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/config.go b/eth/config.go index 9ac99c6c66..9c3f8b0fb2 100644 --- a/eth/config.go +++ b/eth/config.go @@ -33,7 +33,7 @@ import ( // DefaultConfig contains default settings for use on the Ethereum main net. var DefaultConfig = Config{ - SyncMode: downloader.FullSync, + SyncMode: downloader.FastSync, EthashCachesInMem: 2, EthashCachesOnDisk: 3, EthashDatasetsInMem: 1,