From e33c0ead7ca595f156a69e7fda2c7436d3900b8c Mon Sep 17 00:00:00 2001 From: alan <652732310@qq.com> Date: Thu, 13 Jun 2024 14:08:30 +0800 Subject: [PATCH] fix a typo --- 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 7ae7f92def..e591844a05 100644 --- a/core/txpool/blobpool/priority.go +++ b/core/txpool/blobpool/priority.go @@ -84,7 +84,7 @@ func intLog2(n uint) int { default: // The input is log1.125(uint256) = log2(uint256) / log2(1.125). At the // most extreme, log2(uint256) will be a bit below 257, and the constant - // log2(1.125) ~= 0.17. The larges input thus is ~257 / ~0.17 ~= ~1511. + // log2(1.125) ~= 0.17. The largest input thus is ~257 / ~0.17 ~= ~1511. panic("dynamic fee jump diffs cannot reach this") } }