From f5ce0b681eb120c228582b9bdc435173abbd9470 Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Fri, 21 Sep 2018 08:51:41 +0200 Subject: [PATCH] Limit explorer status page in initial sync --- server/public.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/public.go b/server/public.go index 0a089f53..9ac0371e 100644 --- a/server/public.go +++ b/server/public.go @@ -224,7 +224,7 @@ func (s *PublicServer) newTemplateData() *TemplateData { return &TemplateData{ CoinName: s.is.Coin, CoinShortcut: s.is.CoinShortcut, - InternalExplorer: s.internalExplorer, + InternalExplorer: s.internalExplorer && !s.is.InitialSync, } }