From b91766fe6db6e484f2fd75f617307a48ff85600e Mon Sep 17 00:00:00 2001
From: mr_franklin <mr_franklin@126.com>
Date: Thu, 15 Nov 2018 22:31:24 +0800
Subject: [PATCH] eth: fix comment typo (#18114)

* consensus/clique: fix comment typo

* eth,eth/downloader: fix comment typo
---
 eth/downloader/queue.go | 2 +-
 eth/handler.go          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/eth/downloader/queue.go b/eth/downloader/queue.go
index 863cc8de1..7c3395381 100644
--- a/eth/downloader/queue.go
+++ b/eth/downloader/queue.go
@@ -325,7 +325,7 @@ func (q *queue) Schedule(headers []*types.Header, from uint64) []*types.Header {
 		}
 		// Make sure no duplicate requests are executed
 		if _, ok := q.blockTaskPool[hash]; ok {
-			log.Warn("Header  already scheduled for block fetch", "number", header.Number, "hash", hash)
+			log.Warn("Header already scheduled for block fetch", "number", header.Number, "hash", hash)
 			continue
 		}
 		if _, ok := q.receiptTaskPool[hash]; ok {
diff --git a/eth/handler.go b/eth/handler.go
index bd227a84e..741fc9d5a 100644
--- a/eth/handler.go
+++ b/eth/handler.go
@@ -658,7 +658,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
 			p.SetHead(trueHead, trueTD)
 
 			// Schedule a sync if above ours. Note, this will not fire a sync for a gap of
-			// a singe block (as the true TD is below the propagated block), however this
+			// a single block (as the true TD is below the propagated block), however this
 			// scenario should easily be covered by the fetcher.
 			currentBlock := pm.blockchain.CurrentBlock()
 			if trueTD.Cmp(pm.blockchain.GetTd(currentBlock.Hash(), currentBlock.NumberU64())) > 0 {
-- 
GitLab