From 999ff701caa9cd4a8510f6cf121ff9b5ef90f2ef Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Fri, 27 Feb 2026 10:17:25 +0100 Subject: [PATCH] fix spelling Signed-off-by: Csaba Kiraly --- core/txpool/blobpool/priority.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/txpool/blobpool/priority.go b/core/txpool/blobpool/priority.go index c8365ab277..d7e8789ce7 100644 --- a/core/txpool/blobpool/priority.go +++ b/core/txpool/blobpool/priority.go @@ -53,7 +53,7 @@ func evictionPriority1D(basefeeJumps float64, txfeeJumps float64) int { return int(math.Floor(jumps)) } // We only use the negative part for ordering. The positive part is only used - // for threshold comparision (with a negative threshold), so the value is almost + // for threshold comparison (with a negative threshold), so the value is almost // irrelevant, as long as it's positive. return int((math.Ceil(jumps))) }