From 2da43503975855dee333f5290b33f273f831a21f Mon Sep 17 00:00:00 2001 From: terence tsao Date: Tue, 18 Feb 2020 08:24:11 -0800 Subject: [PATCH] Update beacon-chain/blockchain/init_sync_process_block.go --- beacon-chain/blockchain/init_sync_process_block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon-chain/blockchain/init_sync_process_block.go b/beacon-chain/blockchain/init_sync_process_block.go index 9d6c5275142..1aced02e890 100644 --- a/beacon-chain/blockchain/init_sync_process_block.go +++ b/beacon-chain/blockchain/init_sync_process_block.go @@ -57,7 +57,7 @@ func (s *Service) filterBoundaryCandidates(ctx context.Context, root [32]byte, p previousBoundaryRoot := s.boundaryRoots[len(s.boundaryRoots)-1] previousState, ok := s.initSyncState[previousBoundaryRoot] if !ok { - // remove the non-existent root and exit filtering. + // Remove the non-existent root and exit filtering. s.boundaryRoots = s.boundaryRoots[:len(s.boundaryRoots)-1] return }