2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2014-12-04 09:28:02 +00:00
|
|
|
package core
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2021-02-25 14:26:57 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
)
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2015-02-18 15:08:51 +00:00
|
|
|
var (
|
2017-04-06 11:58:03 +00:00
|
|
|
// ErrKnownBlock is returned when a block to import is already known locally.
|
|
|
|
ErrKnownBlock = errors.New("block already known")
|
2014-06-13 10:45:11 +00:00
|
|
|
|
2021-07-29 08:17:40 +00:00
|
|
|
// ErrBannedHash is returned if a block to import is on the banned list.
|
|
|
|
ErrBannedHash = errors.New("banned hash")
|
2017-09-04 19:35:00 +00:00
|
|
|
|
2020-04-22 08:25:36 +00:00
|
|
|
// ErrNoGenesis is returned when there is no Genesis Block.
|
|
|
|
ErrNoGenesis = errors.New("genesis not found in chain")
|
2021-09-07 10:31:17 +00:00
|
|
|
|
|
|
|
errSideChainReceipts = errors.New("side blocks can't be accepted as ancient chain data")
|
2020-04-22 08:25:36 +00:00
|
|
|
)
|
|
|
|
|
2020-05-25 08:21:28 +00:00
|
|
|
// List of evm-call-message pre-checking errors. All state transition messages will
|
2020-04-22 08:25:36 +00:00
|
|
|
// be pre-checked before execution. If any invalidation detected, the corresponding
|
|
|
|
// error should be returned which is defined here.
|
|
|
|
//
|
|
|
|
// - If the pre-checking happens in the miner, then the transaction won't be packed.
|
|
|
|
// - If the pre-checking happens in the block processing procedure, then a "BAD BLOCk"
|
|
|
|
// error should be emitted.
|
|
|
|
var (
|
|
|
|
// ErrNonceTooLow is returned if the nonce of a transaction is lower than the
|
|
|
|
// one present in the local chain.
|
|
|
|
ErrNonceTooLow = errors.New("nonce too low")
|
|
|
|
|
2017-09-04 19:35:00 +00:00
|
|
|
// 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")
|
2019-05-13 10:23:32 +00:00
|
|
|
|
2021-11-11 14:00:58 +00:00
|
|
|
// 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")
|
|
|
|
|
2020-04-22 08:25:36 +00:00
|
|
|
// 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")
|
|
|
|
|
|
|
|
// ErrInsufficientFundsForTransfer is returned if the transaction sender doesn't
|
|
|
|
// have enough funds for transfer(topmost call only).
|
|
|
|
ErrInsufficientFundsForTransfer = errors.New("insufficient funds for transfer")
|
|
|
|
|
|
|
|
// ErrInsufficientFunds is returned if the total cost of executing a transaction
|
|
|
|
// is higher than the balance of the user's account.
|
|
|
|
ErrInsufficientFunds = errors.New("insufficient funds for gas * price + value")
|
|
|
|
|
|
|
|
// ErrGasUintOverflow is returned when calculating gas usage.
|
|
|
|
ErrGasUintOverflow = errors.New("gas uint64 overflow")
|
|
|
|
|
|
|
|
// ErrIntrinsicGas is returned if the transaction is specified to use less gas
|
|
|
|
// than required to start the invocation.
|
|
|
|
ErrIntrinsicGas = errors.New("intrinsic gas too low")
|
2021-02-25 14:26:57 +00:00
|
|
|
|
|
|
|
// ErrTxTypeNotSupported is returned if a transaction is not supported in the
|
|
|
|
// current network configuration.
|
|
|
|
ErrTxTypeNotSupported = types.ErrTxTypeNotSupported
|
2021-05-17 13:13:22 +00:00
|
|
|
|
2021-05-30 17:37:52 +00:00
|
|
|
// ErrTipAboveFeeCap is a sanity error to ensure no one is able to specify a
|
|
|
|
// transaction with a tip higher than the total fee cap.
|
2021-06-08 10:05:41 +00:00
|
|
|
ErrTipAboveFeeCap = errors.New("max priority fee per gas higher than max fee per gas")
|
2021-05-30 17:37:52 +00:00
|
|
|
|
|
|
|
// ErrTipVeryHigh is a sanity error to avoid extremely big numbers specified
|
|
|
|
// in the tip field.
|
2021-06-08 10:05:41 +00:00
|
|
|
ErrTipVeryHigh = errors.New("max priority fee per gas higher than 2^256-1")
|
2021-05-30 17:37:52 +00:00
|
|
|
|
|
|
|
// ErrFeeCapVeryHigh is a sanity error to avoid extremely big numbers specified
|
|
|
|
// in the fee cap field.
|
2021-06-08 10:05:41 +00:00
|
|
|
ErrFeeCapVeryHigh = errors.New("max fee per gas higher than 2^256-1")
|
2021-05-30 17:37:52 +00:00
|
|
|
|
2021-05-17 13:13:22 +00:00
|
|
|
// ErrFeeCapTooLow is returned if the transaction fee cap is less than the
|
|
|
|
// the base fee of the block.
|
2021-06-08 10:05:41 +00:00
|
|
|
ErrFeeCapTooLow = errors.New("max fee per gas less than block base fee")
|
2021-08-07 17:38:18 +00:00
|
|
|
|
|
|
|
// ErrSenderNoEOA is returned if the sender of a transaction is a contract.
|
|
|
|
ErrSenderNoEOA = errors.New("sender not an eoa")
|
2017-04-06 11:58:03 +00:00
|
|
|
)
|