From ff2d1d7e0d08c41c8ef85a8d5105cae218398789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Tue, 7 Nov 2023 16:15:33 +0200 Subject: [PATCH] core: dict wrong typo --- core/error.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/error.go b/core/error.go index 93f05a26b8..4214ed207a 100644 --- a/core/error.go +++ b/core/error.go @@ -86,11 +86,11 @@ var ( // transaction with a tip higher than the total fee cap. ErrTipAboveFeeCap = errors.New("max priority fee per gas higher than max fee per gas") - // ErrTipVeryHigh is a sanity error to avoid extremly big numbers specified + // ErrTipVeryHigh is a sanity error to avoid extremely big numbers specified // in the tip field. ErrTipVeryHigh = errors.New("max priority fee per gas higher than 2^256-1") - // ErrFeeCapVeryHigh is a sanity error to avoid extremly big numbers specified + // ErrFeeCapVeryHigh is a sanity error to avoid extremely big numbers specified // in the fee cap field. ErrFeeCapVeryHigh = errors.New("max fee per gas higher than 2^256-1")