eth: fix comment typo (#18114)

* consensus/clique: fix comment typo

* eth,eth/downloader: fix comment typo
This commit is contained in:
mr_franklin
2018-11-15 22:31:24 +08:00
committed by Péter Szilágyi
parent a6942b9f25
commit b91766fe6d
2 changed files with 2 additions and 2 deletions

View File

@ -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 {