From 9afd452ca169a959ac1ce0e30e2c2a29277235ce Mon Sep 17 00:00:00 2001 From: Yanhong Date: Thu, 3 May 2018 02:06:01 -0700 Subject: [PATCH] consensus/ethash: fixed typo --- consensus/ethash/ethash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/ethash/ethash.go b/consensus/ethash/ethash.go index 1b3dcee30288..ac049f9c3691 100644 --- a/consensus/ethash/ethash.go +++ b/consensus/ethash/ethash.go @@ -156,7 +156,7 @@ type lru struct { futureItem interface{} } -// newlru create a new least-recently-used cache for ither the verification caches +// newlru create a new least-recently-used cache for either the verification caches // or the mining datasets. func newlru(what string, maxItems int, new func(epoch uint64) interface{}) *lru { if maxItems <= 0 {