From 9bd1bb4eae8317ec335b882069de3ee4135a1b8f Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 25 May 2020 17:44:21 +0200 Subject: [PATCH] cmd/utils: fix default DNS discovery configuration --- cmd/utils/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 59a2c9f83034..c29a1bed732f 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1616,7 +1616,7 @@ func setDNSDiscoveryDefaults(cfg *eth.Config, genesis common.Hash) { return // already set through flags/config } - protocol := "eth" + protocol := "all" if cfg.SyncMode == downloader.LightSync { protocol = "les" }