mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
72 lines
2.9 KiB
Go
72 lines
2.9 KiB
Go
// Copyright 2014 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package core
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/XinFinOrg/XDPoSChain/core/types"
|
|
)
|
|
|
|
var (
|
|
// ErrKnownBlock is returned when a block to import is already known locally.
|
|
ErrKnownBlock = errors.New("block already known")
|
|
|
|
// ErrGasLimitReached is returned by the gas pool if the amount of gas required
|
|
// by a transaction is higher than what's left in the block.
|
|
ErrGasLimitReached = errors.New("gas limit reached")
|
|
|
|
// ErrBlacklistedHash is returned if a block to import is on the blacklist.
|
|
ErrBlacklistedHash = errors.New("blacklisted hash")
|
|
|
|
// ErrNonceTooHigh is returned if the nonce of a transaction is higher than the
|
|
// next one expected based on the local chain.
|
|
ErrNonceTooHigh = errors.New("nonce too high")
|
|
|
|
// ErrNonceMax is returned if the nonce of a transaction sender account has
|
|
// maximum allowed value and would become invalid if incremented.
|
|
ErrNonceMax = errors.New("nonce has max value")
|
|
|
|
ErrNotXDPoS = errors.New("XDPoS not found in config")
|
|
|
|
ErrNotFoundM1 = errors.New("list M1 not found ")
|
|
|
|
ErrStopPreparingBlock = errors.New("stop calculating a block not verified by M2")
|
|
|
|
// ErrTxTypeNotSupported is returned if a transaction is not supported in the
|
|
// current network configuration.
|
|
ErrTxTypeNotSupported = types.ErrTxTypeNotSupported
|
|
|
|
// ErrGasUintOverflow is returned when calculating gas usage.
|
|
ErrGasUintOverflow = errors.New("gas uint64 overflow")
|
|
|
|
// ErrTipAboveFeeCap is a sanity error to ensure no one is able to specify a
|
|
// 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 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 extremely big numbers specified
|
|
// in the fee cap field.
|
|
ErrFeeCapVeryHigh = errors.New("max fee per gas higher than 2^256-1")
|
|
|
|
// ErrFeeCapTooLow is returned if the transaction fee cap is less than the
|
|
// the base fee of the block.
|
|
ErrFeeCapTooLow = errors.New("max fee per gas less than block base fee")
|
|
)
|