From b353e7c33f9d973604412601dd66f117a098f1b7 Mon Sep 17 00:00:00 2001 From: Zsolt Felfoldi Date: Thu, 30 May 2019 01:06:05 +0200 Subject: [PATCH] les: fixed linter warning --- les/costtracker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/les/costtracker.go b/les/costtracker.go index 5bbcd13e38..e463c9f8b0 100644 --- a/les/costtracker.go +++ b/les/costtracker.go @@ -260,7 +260,7 @@ func (ct *costTracker) gfLoop() { if recentAvg > max { max = recentAvg } - // we apply continous correction when MAX(recentTime, recentAvg) > threshold + // we apply continuous correction when MAX(recentTime, recentAvg) > threshold if max > threshold { // calculate correction time between last expUpdate and now if max*exp >= threshold {