6#ifndef BITCOIN_PRIMITIVES_TRANSACTION_H
7#define BITCOIN_PRIMITIVES_TRANSACTION_H
34 static constexpr uint32_t
NULL_INDEX = std::numeric_limits<uint32_t>::max();
46 return std::tie(a.
hash, a.
n) < std::tie(b.
hash, b.
n);
200template<
typename Stream,
typename TxType>
206 unsigned char flags = 0;
211 if (tx.vin.size() == 0 && fAllowWitness) {
222 if ((
flags & 1) && fAllowWitness) {
225 for (
size_t i = 0; i < tx.vin.size(); i++) {
226 s >> tx.vin[i].scriptWitness.stack;
228 if (!tx.HasWitness()) {
230 throw std::ios_base::failure(
"Superfluous witness record");
235 throw std::ios_base::failure(
"Unknown transaction optional data");
240template<
typename Stream,
typename TxType>
246 unsigned char flags = 0;
250 if (tx.HasWitness()) {
256 std::vector<CTxIn> vinDummy;
263 for (
size_t i = 0; i < tx.vin.size(); i++) {
264 s << tx.vin[i].scriptWitness.stack;
270template<
typename TxType>
273 return std::accumulate(tx.vout.cbegin(), tx.vout.cend(),
CAmount{0}, [](
CAmount sum,
const auto& txout) { return sum + txout.nValue; });
291 const std::vector<CTxIn>
vin;
292 const std::vector<CTxOut>
vout;
312 template <
typename Stream>
319 template <
typename Stream>
321 template <
typename Stream>
325 return vin.empty() &&
vout.empty();
343 return (
vin.size() == 1 &&
vin[0].prevout.IsNull());
367 template <
typename Stream>
372 template <
typename Stream>
377 template <
typename Stream>
382 template <
typename Stream>
394 for (
size_t i = 0; i <
vin.size(); i++) {
int64_t CAmount
Amount in satoshis (Can be negative)
An outpoint - a combination of a transaction hash and an index n into its vout.
friend bool operator==(const COutPoint &a, const COutPoint &b)
SERIALIZE_METHODS(COutPoint, obj)
COutPoint(const Txid &hashIn, uint32_t nIn)
friend bool operator<(const COutPoint &a, const COutPoint &b)
std::string ToString() const
static constexpr uint32_t NULL_INDEX
Serialized script, used inside transaction inputs and outputs.
The basic transaction that is broadcasted on the network and contained in blocks.
friend bool operator==(const CTransaction &a, const CTransaction &b)
CTransaction(deserialize_type, const TransactionSerParams ¶ms, Stream &s)
This deserializing constructor is provided instead of an Unserialize method.
CTransaction(deserialize_type, Stream &s)
bool ComputeHasWitness() const
CTransaction(const CMutableTransaction &tx)
Convert a CMutableTransaction into a CTransaction.
const Wtxid m_witness_hash
void Serialize(Stream &s) const
const std::vector< CTxOut > vout
std::string ToString() const
const bool m_has_witness
Memory only.
const Wtxid & GetWitnessHash() const LIFETIMEBOUND
unsigned int GetTotalSize() const
Get the total transaction size in bytes, including witness data.
Wtxid ComputeWitnessHash() const
CAmount GetValueOut() const
const Txid & GetHash() const LIFETIMEBOUND
static const uint32_t CURRENT_VERSION
const std::vector< CTxIn > vin
An input of a transaction.
static const uint32_t MAX_SEQUENCE_NONFINAL
This is the maximum sequence number that enables both nLockTime and OP_CHECKLOCKTIMEVERIFY (BIP 65).
friend bool operator==(const CTxIn &a, const CTxIn &b)
static const uint32_t SEQUENCE_LOCKTIME_DISABLE_FLAG
If this flag is set, CTxIn::nSequence is NOT interpreted as a relative lock-time.
static const uint32_t SEQUENCE_LOCKTIME_MASK
If CTxIn::nSequence encodes a relative lock-time, this mask is applied to extract that lock-time from...
static const uint32_t SEQUENCE_FINAL
Setting nSequence to this value for every input in a transaction disables nLockTime/IsFinalTx().
std::string ToString() const
static const uint32_t SEQUENCE_LOCKTIME_TYPE_FLAG
If CTxIn::nSequence encodes a relative lock-time and this flag is set, the relative lock-time has uni...
CScriptWitness scriptWitness
Only serialized through CTransaction.
static const int SEQUENCE_LOCKTIME_GRANULARITY
In order to use the same number of bits to encode roughly the same wall-clock duration,...
SERIALIZE_METHODS(CTxIn, obj)
An output of a transaction.
SERIALIZE_METHODS(CTxOut, obj)
friend bool operator==(const CTxOut &a, const CTxOut &b)
std::string ToString() const
constexpr bool IsNull() const
Wrapped uint256 methods.
static constexpr TransactionSerParams TX_NO_WITNESS
void UnserializeTransaction(TxType &tx, Stream &s, const TransactionSerParams ¶ms)
Basic transaction serialization format:
static constexpr TransactionSerParams TX_WITH_WITNESS
void SerializeTransaction(const TxType &tx, Stream &s, const TransactionSerParams ¶ms)
CAmount CalculateOutputValue(const TxType &tx)
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
constexpr deserialize_type deserialize
#define SER_PARAMS_OPFUNC
Helper macro for SerParams structs.
A mutable version of CTransaction.
CMutableTransaction(deserialize_type, const TransactionSerParams ¶ms, Stream &s)
void Unserialize(Stream &s)
void Serialize(Stream &s) const
CMutableTransaction(deserialize_type, Stream &s)
std::vector< CTxOut > vout
Txid GetHash() const
Compute the hash of this CMutableTransaction.
Dummy data type to identify deserializing constructors.