Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <cstdint>
#include <vector>
Go to the source code of this file.
Namespaces | |
namespace | Consensus |
Functions | |
bool | Consensus::CheckTxInputs (const CTransaction &tx, TxValidationState &state, const CCoinsViewCache &inputs, int nSpendHeight, Amount &txfee) |
Check whether all inputs of this transaction are valid (no double spends and amounts). More... | |
bool | ContextualCheckTransaction (const Consensus::Params ¶ms, const CTransaction &tx, TxValidationState &state, int nHeight, int64_t nMedianTimePast) |
Context dependent validity checks for non coinbase transactions. More... | |
std::pair< int, int64_t > | CalculateSequenceLocks (const CTransaction &tx, int flags, std::vector< int > &prevHeights, const CBlockIndex &block) |
Calculates the block height and previous block's median time past at which the transaction will be considered final in the context of BIP 68. More... | |
bool | EvaluateSequenceLocks (const CBlockIndex &block, std::pair< int, int64_t > lockPair) |
bool | SequenceLocks (const CTransaction &tx, int flags, std::vector< int > &prevHeights, const CBlockIndex &block) |
Check if transaction is final per BIP 68 sequence numbers and can be included in a block. More... | |
std::pair< int, int64_t > CalculateSequenceLocks | ( | const CTransaction & | tx, |
int | flags, | ||
std::vector< int > & | prevHeights, | ||
const CBlockIndex & | block | ||
) |
Calculates the block height and previous block's median time past at which the transaction will be considered final in the context of BIP 68.
Also removes from the vector of input heights any entries which did not correspond to sequence locked inputs as they do not affect the calculation.
Definition at line 78 of file tx_verify.cpp.
bool ContextualCheckTransaction | ( | const Consensus::Params & | params, |
const CTransaction & | tx, | ||
TxValidationState & | state, | ||
int | nHeight, | ||
int64_t | nMedianTimePast | ||
) |
Context dependent validity checks for non coinbase transactions.
This doesn't check the validity of the transaction against the UTXO set, but simply characteristic that are suceptible to change over time such as feature activation/deactivation and CLTV.
Definition at line 41 of file tx_verify.cpp.
bool EvaluateSequenceLocks | ( | const CBlockIndex & | block, |
std::pair< int, int64_t > | lockPair | ||
) |
Definition at line 150 of file tx_verify.cpp.
bool SequenceLocks | ( | const CTransaction & | tx, |
int | flags, | ||
std::vector< int > & | prevHeights, | ||
const CBlockIndex & | block | ||
) |
Check if transaction is final per BIP 68 sequence numbers and can be included in a block.
Consensus critical. Takes as input a list of heights at which tx's inputs (in order) confirmed.
Definition at line 161 of file tx_verify.cpp.