From 9aaa4208a896394ec557a3dc5a99c9e5eafff4de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Mon, 31 May 2021 10:21:48 +0300 Subject: [PATCH] eth/ethconfig: flip the default from fast to snap sync --- eth/ethconfig/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/ethconfig/config.go b/eth/ethconfig/config.go index f297019ba5..b1f8e52e09 100644 --- a/eth/ethconfig/config.go +++ b/eth/ethconfig/config.go @@ -57,7 +57,7 @@ var LightClientGPO = gasprice.Config{ // Defaults contains default settings for use on the Ethereum main net. var Defaults = Config{ - SyncMode: downloader.FastSync, + SyncMode: downloader.SnapSync, Ethash: ethash.Config{ CacheDir: "ethash", CachesInMem: 2,