2014-10-18 02:34:06 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 17:58:29 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-10-18 02:34:06 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-18 22:03:02 +01:00
|
|
|
#ifndef BITCOIN_PRIMITIVES_TRANSACTION_H
|
|
|
|
#define BITCOIN_PRIMITIVES_TRANSACTION_H
|
2014-10-18 02:34:06 +02:00
|
|
|
|
|
|
|
#include "amount.h"
|
|
|
|
#include "script/script.h"
|
|
|
|
#include "serialize.h"
|
|
|
|
#include "uint256.h"
|
|
|
|
|
2015-11-06 01:32:04 +01:00
|
|
|
static const int SERIALIZE_TRANSACTION_NO_WITNESS = 0x40000000;
|
|
|
|
|
2016-01-03 18:54:50 +01:00
|
|
|
static const int WITNESS_SCALE_FACTOR = 4;
|
|
|
|
|
2014-10-18 02:34:06 +02:00
|
|
|
/** An outpoint - a combination of a transaction hash and an index n into its vout */
|
|
|
|
class COutPoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
uint256 hash;
|
|
|
|
uint32_t n;
|
|
|
|
|
|
|
|
COutPoint() { SetNull(); }
|
|
|
|
COutPoint(uint256 hashIn, uint32_t nIn) { hash = hashIn; n = nIn; }
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
2016-10-29 01:29:17 +02:00
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action) {
|
2014-12-19 11:40:00 +01:00
|
|
|
READWRITE(hash);
|
|
|
|
READWRITE(n);
|
2014-10-18 02:34:06 +02:00
|
|
|
}
|
|
|
|
|
2014-12-15 09:11:16 +01:00
|
|
|
void SetNull() { hash.SetNull(); n = (uint32_t) -1; }
|
|
|
|
bool IsNull() const { return (hash.IsNull() && n == (uint32_t) -1); }
|
2014-10-18 02:34:06 +02:00
|
|
|
|
|
|
|
friend bool operator<(const COutPoint& a, const COutPoint& b)
|
|
|
|
{
|
2016-03-18 05:14:19 +01:00
|
|
|
int cmp = a.hash.Compare(b.hash);
|
|
|
|
return cmp < 0 || (cmp == 0 && a.n < b.n);
|
2014-10-18 02:34:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator==(const COutPoint& a, const COutPoint& b)
|
|
|
|
{
|
|
|
|
return (a.hash == b.hash && a.n == b.n);
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator!=(const COutPoint& a, const COutPoint& b)
|
|
|
|
{
|
|
|
|
return !(a == b);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ToString() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** An input of a transaction. It contains the location of the previous
|
|
|
|
* transaction's output that it claims and a signature that matches the
|
|
|
|
* output's public key.
|
|
|
|
*/
|
|
|
|
class CTxIn
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
COutPoint prevout;
|
|
|
|
CScript scriptSig;
|
|
|
|
uint32_t nSequence;
|
|
|
|
|
2015-12-07 21:44:16 +01:00
|
|
|
/* Setting nSequence to this value for every input in a transaction
|
|
|
|
* disables nLockTime. */
|
|
|
|
static const uint32_t SEQUENCE_FINAL = 0xffffffff;
|
|
|
|
|
|
|
|
/* Below flags apply in the context of BIP 68*/
|
|
|
|
/* If this flag set, CTxIn::nSequence is NOT interpreted as a
|
|
|
|
* relative lock-time. */
|
|
|
|
static const uint32_t SEQUENCE_LOCKTIME_DISABLE_FLAG = (1 << 31);
|
|
|
|
|
|
|
|
/* If CTxIn::nSequence encodes a relative lock-time and this flag
|
|
|
|
* is set, the relative lock-time has units of 512 seconds,
|
|
|
|
* otherwise it specifies blocks with a granularity of 1. */
|
|
|
|
static const uint32_t SEQUENCE_LOCKTIME_TYPE_FLAG = (1 << 22);
|
|
|
|
|
|
|
|
/* If CTxIn::nSequence encodes a relative lock-time, this mask is
|
|
|
|
* applied to extract that lock-time from the sequence field. */
|
|
|
|
static const uint32_t SEQUENCE_LOCKTIME_MASK = 0x0000ffff;
|
|
|
|
|
|
|
|
/* In order to use the same number of bits to encode roughly the
|
|
|
|
* same wall-clock duration, and because blocks are naturally
|
|
|
|
* limited to occur every 600s on average, the minimum granularity
|
|
|
|
* for time-based relative lock-time is fixed at 512 seconds.
|
|
|
|
* Converting from CTxIn::nSequence to seconds is performed by
|
|
|
|
* multiplying by 512 = 2^9, or equivalently shifting up by
|
|
|
|
* 9 bits. */
|
|
|
|
static const int SEQUENCE_LOCKTIME_GRANULARITY = 9;
|
|
|
|
|
2014-10-18 02:34:06 +02:00
|
|
|
CTxIn()
|
|
|
|
{
|
2015-12-07 21:44:16 +01:00
|
|
|
nSequence = SEQUENCE_FINAL;
|
2014-10-18 02:34:06 +02:00
|
|
|
}
|
|
|
|
|
2015-12-07 21:44:16 +01:00
|
|
|
explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), uint32_t nSequenceIn=SEQUENCE_FINAL);
|
|
|
|
CTxIn(uint256 hashPrevTx, uint32_t nOut, CScript scriptSigIn=CScript(), uint32_t nSequenceIn=SEQUENCE_FINAL);
|
2014-10-18 02:34:06 +02:00
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
2016-10-29 01:29:17 +02:00
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action) {
|
2014-10-18 02:34:06 +02:00
|
|
|
READWRITE(prevout);
|
2015-10-29 07:11:24 +01:00
|
|
|
READWRITE(*(CScriptBase*)(&scriptSig));
|
2014-10-18 02:34:06 +02:00
|
|
|
READWRITE(nSequence);
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator==(const CTxIn& a, const CTxIn& b)
|
|
|
|
{
|
|
|
|
return (a.prevout == b.prevout &&
|
|
|
|
a.scriptSig == b.scriptSig &&
|
|
|
|
a.nSequence == b.nSequence);
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator!=(const CTxIn& a, const CTxIn& b)
|
|
|
|
{
|
|
|
|
return !(a == b);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ToString() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** An output of a transaction. It contains the public key that the next input
|
|
|
|
* must be able to sign with to claim it.
|
|
|
|
*/
|
|
|
|
class CTxOut
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CAmount nValue;
|
|
|
|
CScript scriptPubKey;
|
|
|
|
|
|
|
|
CTxOut()
|
|
|
|
{
|
|
|
|
SetNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
CTxOut(const CAmount& nValueIn, CScript scriptPubKeyIn);
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
2016-10-29 01:29:17 +02:00
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action) {
|
2014-10-18 02:34:06 +02:00
|
|
|
READWRITE(nValue);
|
2015-10-29 07:11:24 +01:00
|
|
|
READWRITE(*(CScriptBase*)(&scriptPubKey));
|
2014-10-18 02:34:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetNull()
|
|
|
|
{
|
|
|
|
nValue = -1;
|
|
|
|
scriptPubKey.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsNull() const
|
|
|
|
{
|
|
|
|
return (nValue == -1);
|
|
|
|
}
|
|
|
|
|
2014-07-23 14:34:36 +02:00
|
|
|
CAmount GetDustThreshold(const CFeeRate &minRelayTxFee) const
|
2014-10-18 02:34:06 +02:00
|
|
|
{
|
|
|
|
// "Dust" is defined in terms of CTransaction::minRelayTxFee,
|
|
|
|
// which has units satoshis-per-kilobyte.
|
|
|
|
// If you'd pay more than 1/3 in fees
|
|
|
|
// to spend something, then we consider it dust.
|
2016-01-03 18:54:50 +01:00
|
|
|
// A typical spendable non-segwit txout is 34 bytes big, and will
|
2014-10-18 02:34:06 +02:00
|
|
|
// need a CTxIn of at least 148 bytes to spend:
|
2015-10-13 19:23:11 +02:00
|
|
|
// so dust is a spendable txout less than
|
2016-01-03 18:54:50 +01:00
|
|
|
// 546*minRelayTxFee/1000 (in satoshis).
|
|
|
|
// A typical spendable segwit txout is 31 bytes big, and will
|
|
|
|
// need a CTxIn of at least 67 bytes to spend:
|
|
|
|
// so dust is a spendable txout less than
|
|
|
|
// 294*minRelayTxFee/1000 (in satoshis).
|
2015-03-25 10:04:02 +01:00
|
|
|
if (scriptPubKey.IsUnspendable())
|
|
|
|
return 0;
|
|
|
|
|
2016-10-29 01:51:33 +02:00
|
|
|
size_t nSize = GetSerializeSize(*this, SER_DISK, 0);
|
2016-01-03 18:54:50 +01:00
|
|
|
int witnessversion = 0;
|
|
|
|
std::vector<unsigned char> witnessprogram;
|
|
|
|
|
|
|
|
if (scriptPubKey.IsWitnessProgram(witnessversion, witnessprogram)) {
|
|
|
|
// sum the sizes of the parts of a transaction input
|
|
|
|
// with 75% segwit discount applied to the script size.
|
|
|
|
nSize += (32 + 4 + 1 + (107 / WITNESS_SCALE_FACTOR) + 4);
|
|
|
|
} else {
|
|
|
|
nSize += (32 + 4 + 1 + 107 + 4); // the 148 mentioned above
|
|
|
|
}
|
|
|
|
|
|
|
|
return 3 * minRelayTxFee.GetFee(nSize);
|
2014-07-23 14:34:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IsDust(const CFeeRate &minRelayTxFee) const
|
|
|
|
{
|
|
|
|
return (nValue < GetDustThreshold(minRelayTxFee));
|
2014-10-18 02:34:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator==(const CTxOut& a, const CTxOut& b)
|
|
|
|
{
|
|
|
|
return (a.nValue == b.nValue &&
|
|
|
|
a.scriptPubKey == b.scriptPubKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator!=(const CTxOut& a, const CTxOut& b)
|
|
|
|
{
|
|
|
|
return !(a == b);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ToString() const;
|
|
|
|
};
|
|
|
|
|
2016-07-07 01:46:46 +02:00
|
|
|
class CTxInWitness
|
2015-11-06 01:32:04 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CScriptWitness scriptWitness;
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
2016-10-29 01:29:17 +02:00
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action)
|
2015-11-06 01:32:04 +01:00
|
|
|
{
|
|
|
|
READWRITE(scriptWitness.stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsNull() const { return scriptWitness.IsNull(); }
|
|
|
|
|
2016-07-07 01:46:46 +02:00
|
|
|
CTxInWitness() { }
|
2015-11-06 01:32:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class CTxWitness
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** In case vtxinwit is missing, all entries are treated as if they were empty CTxInWitnesses */
|
2016-07-07 01:46:46 +02:00
|
|
|
std::vector<CTxInWitness> vtxinwit;
|
2015-11-06 01:32:04 +01:00
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
bool IsEmpty() const { return vtxinwit.empty(); }
|
|
|
|
|
|
|
|
bool IsNull() const
|
|
|
|
{
|
|
|
|
for (size_t n = 0; n < vtxinwit.size(); n++) {
|
|
|
|
if (!vtxinwit[n].IsNull()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetNull()
|
|
|
|
{
|
|
|
|
vtxinwit.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
2016-10-29 01:29:17 +02:00
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action)
|
2015-11-06 01:32:04 +01:00
|
|
|
{
|
|
|
|
for (size_t n = 0; n < vtxinwit.size(); n++) {
|
|
|
|
READWRITE(vtxinwit[n]);
|
|
|
|
}
|
|
|
|
if (IsNull()) {
|
|
|
|
/* It's illegal to encode a witness when all vtxinwit entries are empty. */
|
|
|
|
throw std::ios_base::failure("Superfluous witness record");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-10-18 02:34:06 +02:00
|
|
|
struct CMutableTransaction;
|
|
|
|
|
2015-11-06 01:32:04 +01:00
|
|
|
/**
|
|
|
|
* Basic transaction serialization format:
|
|
|
|
* - int32_t nVersion
|
|
|
|
* - std::vector<CTxIn> vin
|
|
|
|
* - std::vector<CTxOut> vout
|
|
|
|
* - uint32_t nLockTime
|
|
|
|
*
|
|
|
|
* Extended transaction serialization format:
|
|
|
|
* - int32_t nVersion
|
|
|
|
* - unsigned char dummy = 0x00
|
|
|
|
* - unsigned char flags (!= 0)
|
|
|
|
* - std::vector<CTxIn> vin
|
|
|
|
* - std::vector<CTxOut> vout
|
|
|
|
* - if (flags & 1):
|
|
|
|
* - CTxWitness wit;
|
|
|
|
* - uint32_t nLockTime
|
|
|
|
*/
|
|
|
|
template<typename Stream, typename Operation, typename TxType>
|
2016-10-29 01:29:17 +02:00
|
|
|
inline void SerializeTransaction(TxType& tx, Stream& s, Operation ser_action) {
|
|
|
|
const bool fAllowWitness = !(s.GetVersion() & SERIALIZE_TRANSACTION_NO_WITNESS);
|
2016-07-12 05:27:09 +02:00
|
|
|
|
2015-11-06 01:32:04 +01:00
|
|
|
READWRITE(*const_cast<int32_t*>(&tx.nVersion));
|
|
|
|
unsigned char flags = 0;
|
|
|
|
if (ser_action.ForRead()) {
|
|
|
|
const_cast<std::vector<CTxIn>*>(&tx.vin)->clear();
|
|
|
|
const_cast<std::vector<CTxOut>*>(&tx.vout)->clear();
|
|
|
|
const_cast<CTxWitness*>(&tx.wit)->SetNull();
|
|
|
|
/* Try to read the vin. In case the dummy is there, this will be read as an empty vector. */
|
|
|
|
READWRITE(*const_cast<std::vector<CTxIn>*>(&tx.vin));
|
2016-07-12 05:27:09 +02:00
|
|
|
if (tx.vin.size() == 0 && fAllowWitness) {
|
2015-11-06 01:32:04 +01:00
|
|
|
/* We read a dummy or an empty vin. */
|
|
|
|
READWRITE(flags);
|
|
|
|
if (flags != 0) {
|
|
|
|
READWRITE(*const_cast<std::vector<CTxIn>*>(&tx.vin));
|
|
|
|
READWRITE(*const_cast<std::vector<CTxOut>*>(&tx.vout));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* We read a non-empty vin. Assume a normal vout follows. */
|
|
|
|
READWRITE(*const_cast<std::vector<CTxOut>*>(&tx.vout));
|
|
|
|
}
|
2016-07-12 05:27:09 +02:00
|
|
|
if ((flags & 1) && fAllowWitness) {
|
2015-11-06 01:32:04 +01:00
|
|
|
/* The witness flag is present, and we support witnesses. */
|
|
|
|
flags ^= 1;
|
|
|
|
const_cast<CTxWitness*>(&tx.wit)->vtxinwit.resize(tx.vin.size());
|
|
|
|
READWRITE(tx.wit);
|
|
|
|
}
|
|
|
|
if (flags) {
|
|
|
|
/* Unknown flag in the serialization */
|
|
|
|
throw std::ios_base::failure("Unknown transaction optional data");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Consistency check
|
|
|
|
assert(tx.wit.vtxinwit.size() <= tx.vin.size());
|
2016-07-12 05:27:09 +02:00
|
|
|
if (fAllowWitness) {
|
2015-11-06 01:32:04 +01:00
|
|
|
/* Check whether witnesses need to be serialized. */
|
|
|
|
if (!tx.wit.IsNull()) {
|
|
|
|
flags |= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flags) {
|
|
|
|
/* Use extended format in case witnesses are to be serialized. */
|
|
|
|
std::vector<CTxIn> vinDummy;
|
|
|
|
READWRITE(vinDummy);
|
|
|
|
READWRITE(flags);
|
|
|
|
}
|
|
|
|
READWRITE(*const_cast<std::vector<CTxIn>*>(&tx.vin));
|
|
|
|
READWRITE(*const_cast<std::vector<CTxOut>*>(&tx.vout));
|
|
|
|
if (flags & 1) {
|
|
|
|
const_cast<CTxWitness*>(&tx.wit)->vtxinwit.resize(tx.vin.size());
|
|
|
|
READWRITE(tx.wit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
READWRITE(*const_cast<uint32_t*>(&tx.nLockTime));
|
|
|
|
}
|
|
|
|
|
2014-10-18 02:34:06 +02:00
|
|
|
/** The basic transaction that is broadcasted on the network and contained in
|
|
|
|
* blocks. A transaction can contain multiple inputs and outputs.
|
|
|
|
*/
|
|
|
|
class CTransaction
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
/** Memory only. */
|
|
|
|
const uint256 hash;
|
|
|
|
|
|
|
|
public:
|
2016-02-19 20:52:31 +01:00
|
|
|
// Default transaction version.
|
2014-10-18 02:34:06 +02:00
|
|
|
static const int32_t CURRENT_VERSION=1;
|
|
|
|
|
2016-02-19 20:52:31 +01:00
|
|
|
// Changing the default transaction version requires a two step process: first
|
|
|
|
// adapting relay policy by bumping MAX_STANDARD_VERSION, and then later date
|
|
|
|
// bumping the default CURRENT_VERSION at which point both CURRENT_VERSION and
|
|
|
|
// MAX_STANDARD_VERSION will be equal.
|
|
|
|
static const int32_t MAX_STANDARD_VERSION=2;
|
|
|
|
|
2014-10-18 02:34:06 +02:00
|
|
|
// The local variables are made const to prevent unintended modification
|
|
|
|
// without updating the cached hash value. However, CTransaction is not
|
|
|
|
// actually immutable; deserialization and assignment are implemented,
|
|
|
|
// and bypass the constness. This is safe, as they update the entire
|
|
|
|
// structure, including the hash.
|
|
|
|
const int32_t nVersion;
|
|
|
|
const std::vector<CTxIn> vin;
|
|
|
|
const std::vector<CTxOut> vout;
|
2015-11-06 01:32:04 +01:00
|
|
|
CTxWitness wit; // Not const: can change without invalidating the txid cache
|
2014-10-18 02:34:06 +02:00
|
|
|
const uint32_t nLockTime;
|
|
|
|
|
|
|
|
/** Construct a CTransaction that qualifies as IsNull() */
|
|
|
|
CTransaction();
|
|
|
|
|
|
|
|
/** Convert a CMutableTransaction into a CTransaction. */
|
|
|
|
CTransaction(const CMutableTransaction &tx);
|
|
|
|
|
|
|
|
CTransaction& operator=(const CTransaction& tx);
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
2016-10-29 01:29:17 +02:00
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action) {
|
|
|
|
SerializeTransaction(*this, s, ser_action);
|
2015-11-06 01:32:04 +01:00
|
|
|
if (ser_action.ForRead()) {
|
2014-10-18 02:34:06 +02:00
|
|
|
UpdateHash();
|
2015-11-06 01:32:04 +01:00
|
|
|
}
|
2014-10-18 02:34:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IsNull() const {
|
|
|
|
return vin.empty() && vout.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint256& GetHash() const {
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2015-11-06 01:32:04 +01:00
|
|
|
// Compute a hash that includes both transaction and witness data
|
|
|
|
uint256 GetWitnessHash() const;
|
|
|
|
|
2014-10-18 02:34:06 +02:00
|
|
|
// Return sum of txouts.
|
|
|
|
CAmount GetValueOut() const;
|
|
|
|
// GetValueIn() is a method on CCoinsViewCache, because
|
|
|
|
// inputs must be known to compute value in.
|
|
|
|
|
|
|
|
// Compute priority, given priority of inputs and (optionally) tx size
|
|
|
|
double ComputePriority(double dPriorityInputs, unsigned int nTxSize=0) const;
|
|
|
|
|
|
|
|
// Compute modified tx size for priority calculation (optionally given tx size)
|
|
|
|
unsigned int CalculateModifiedSize(unsigned int nTxSize=0) const;
|
2016-09-06 22:30:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the total transaction size in bytes, including witness data.
|
|
|
|
* "Total Size" defined in BIP141 and BIP144.
|
|
|
|
* @return Total transaction size in bytes
|
|
|
|
*/
|
|
|
|
unsigned int GetTotalSize() const;
|
2014-10-18 02:34:06 +02:00
|
|
|
|
|
|
|
bool IsCoinBase() const
|
|
|
|
{
|
|
|
|
return (vin.size() == 1 && vin[0].prevout.IsNull());
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator==(const CTransaction& a, const CTransaction& b)
|
|
|
|
{
|
|
|
|
return a.hash == b.hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator!=(const CTransaction& a, const CTransaction& b)
|
|
|
|
{
|
|
|
|
return a.hash != b.hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ToString() const;
|
2015-11-06 01:42:38 +01:00
|
|
|
|
|
|
|
void UpdateHash() const;
|
2014-10-18 02:34:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/** A mutable version of CTransaction. */
|
|
|
|
struct CMutableTransaction
|
|
|
|
{
|
|
|
|
int32_t nVersion;
|
|
|
|
std::vector<CTxIn> vin;
|
|
|
|
std::vector<CTxOut> vout;
|
2015-11-06 01:32:04 +01:00
|
|
|
CTxWitness wit;
|
2014-10-18 02:34:06 +02:00
|
|
|
uint32_t nLockTime;
|
|
|
|
|
|
|
|
CMutableTransaction();
|
|
|
|
CMutableTransaction(const CTransaction& tx);
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
2016-10-29 01:29:17 +02:00
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action) {
|
|
|
|
SerializeTransaction(*this, s, ser_action);
|
2014-10-18 02:34:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Compute the hash of this CMutableTransaction. This is computed on the
|
|
|
|
* fly, as opposed to GetHash() in CTransaction, which uses a cached result.
|
|
|
|
*/
|
|
|
|
uint256 GetHash() const;
|
|
|
|
};
|
|
|
|
|
2016-07-18 19:28:26 +02:00
|
|
|
/** Compute the weight of a transaction, as defined by BIP 141 */
|
|
|
|
int64_t GetTransactionWeight(const CTransaction &tx);
|
2016-01-03 18:54:50 +01:00
|
|
|
|
2014-11-18 22:03:02 +01:00
|
|
|
#endif // BITCOIN_PRIMITIVES_TRANSACTION_H
|