![]() |
Bitcoin ABC 0.31.0
P2P Digital Currency
|
#include <cstdint>
Go to the source code of this file.
Enumerations | |
enum class | BlockValidity : uint32_t { UNKNOWN = 0 , RESERVED = 1 , TREE = 2 , TRANSACTIONS = 3 , CHAIN = 4 , SCRIPTS = 5 } |
|
strong |
Enumerator | |
---|---|
UNKNOWN | Unused. |
RESERVED | Reserved (was HEADER). |
TREE | All parent headers found, difficulty matches, timestamp >= median previous, checkpoint. Implies all parents are also at least TREE. |
TRANSACTIONS | Only first tx is coinbase, 2 <= coinbase input script length <= 100, transactions valid, no duplicate txids, size, merkle root. Implies all parents are at least TREE but not necessarily TRANSACTIONS. If a block's validity is at least VALID_TRANSACTIONS, CBlockIndex::nTx will be set. If a block and all previous blocks back to the genesis block or an assumeutxo snapshot block are at least VALID_TRANSACTIONS, CBlockIndex::nChainTx will be set. |
CHAIN | Outputs do not overspend inputs, no double spends, coinbase output ok, no immature coinbase spends, BIP30. Implies all previous blocks back to the genesis block or an assumeutxo snapshot block are at least VALID_CHAIN. |
SCRIPTS | Scripts & signatures ok. Implies all previous blocks back to the genesis block or an assumeutxo snapshot block are at least VALID_SCRIPTS. |
Definition at line 10 of file blockvalidity.h.