diff --git a/beacon-chain/blockchain/receive_block.go b/beacon-chain/blockchain/receive_block.go index ae09efac2..4dedda356 100644 --- a/beacon-chain/blockchain/receive_block.go +++ b/beacon-chain/blockchain/receive_block.go @@ -78,7 +78,7 @@ func (s *Service) ReceiveBlockBatch(ctx context.Context, blocks []block.SignedBe ctx, span := trace.StartSpan(ctx, "blockChain.ReceiveBlockBatch") defer span.End() - // Apply state transition on the incoming newly received blockCopy without verifying its BLS contents. + // Apply state transition on the incoming newly received block batches, one by one. fCheckpoints, jCheckpoints, err := s.onBlockBatch(ctx, blocks, blkRoots) if err != nil { err := errors.Wrap(err, "could not process block in batch")