mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
core: dict wrong typo
This commit is contained in:
parent
45440267cc
commit
ff2d1d7e0d
1 changed files with 2 additions and 2 deletions
|
|
@ -86,11 +86,11 @@ var (
|
||||||
// transaction with a tip higher than the total fee cap.
|
// transaction with a tip higher than the total fee cap.
|
||||||
ErrTipAboveFeeCap = errors.New("max priority fee per gas higher than max fee per gas")
|
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.
|
// in the tip field.
|
||||||
ErrTipVeryHigh = errors.New("max priority fee per gas higher than 2^256-1")
|
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.
|
// in the fee cap field.
|
||||||
ErrFeeCapVeryHigh = errors.New("max fee per gas higher than 2^256-1")
|
ErrFeeCapVeryHigh = errors.New("max fee per gas higher than 2^256-1")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue