Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-2022 The Bitcoin Core developers
3 : : // Distributed under the MIT software license, see the accompanying
4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 : :
6 : : #include <primitives/transaction.h>
7 : :
8 : : #include <consensus/amount.h>
9 : : #include <crypto/hex_base.h>
10 : : #include <hash.h>
11 : : #include <script/script.h>
12 : : #include <serialize.h>
13 : : #include <tinyformat.h>
14 : : #include <uint256.h>
15 : : #include <util/transaction_identifier.h>
16 : :
17 : : #include <algorithm>
18 : : #include <cassert>
19 : : #include <stdexcept>
20 : :
21 : 3759 : std::string COutPoint::ToString() const
22 : : {
23 [ + - + - ]: 7518 : return strprintf("COutPoint(%s, %u)", hash.ToString().substr(0,10), n);
24 : : }
25 : :
26 : 17293 : CTxIn::CTxIn(COutPoint prevoutIn, CScript scriptSigIn, uint32_t nSequenceIn)
27 : : {
28 : 17293 : prevout = prevoutIn;
29 : 17293 : scriptSig = scriptSigIn;
30 : 17293 : nSequence = nSequenceIn;
31 : 17293 : }
32 : :
33 : 2526 : CTxIn::CTxIn(Txid hashPrevTx, uint32_t nOut, CScript scriptSigIn, uint32_t nSequenceIn)
34 : : {
35 : 2526 : prevout = COutPoint(hashPrevTx, nOut);
36 : 2526 : scriptSig = scriptSigIn;
37 : 2526 : nSequence = nSequenceIn;
38 : 2526 : }
39 : :
40 : 3648 : std::string CTxIn::ToString() const
41 : : {
42 [ + - ]: 3648 : std::string str;
43 [ + - ]: 3648 : str += "CTxIn(";
44 [ + - ]: 7296 : str += prevout.ToString();
45 [ - + ]: 3648 : if (prevout.IsNull())
46 [ # # # # : 0 : str += strprintf(", coinbase %s", HexStr(scriptSig));
# # ]
47 : : else
48 [ + + + - : 10944 : str += strprintf(", scriptSig=%s", HexStr(scriptSig).substr(0, 24));
+ - + - ]
49 [ + - ]: 3648 : if (nSequence != SEQUENCE_FINAL)
50 [ + - ]: 7296 : str += strprintf(", nSequence=%u", nSequence);
51 [ + - ]: 3648 : str += ")";
52 : 3648 : return str;
53 : 0 : }
54 : :
55 : 194967 : CTxOut::CTxOut(const CAmount& nValueIn, CScript scriptPubKeyIn)
56 : : {
57 : 194967 : nValue = nValueIn;
58 : 194967 : scriptPubKey = scriptPubKeyIn;
59 : 194967 : }
60 : :
61 : 9396 : std::string CTxOut::ToString() const
62 : : {
63 [ + + + - : 28188 : return strprintf("CTxOut(nValue=%d.%08d, scriptPubKey=%s)", nValue / COIN, nValue % COIN, HexStr(scriptPubKey).substr(0, 30));
+ - ]
64 : : }
65 : :
66 : 563033 : CMutableTransaction::CMutableTransaction() : version{CTransaction::CURRENT_VERSION}, nLockTime{0} {}
67 [ + - ]: 161444 : CMutableTransaction::CMutableTransaction(const CTransaction& tx) : vin(tx.vin), vout(tx.vout), version{tx.version}, nLockTime{tx.nLockTime} {}
68 : :
69 : 234495 : Txid CMutableTransaction::GetHash() const
70 : : {
71 : 234495 : return Txid::FromUint256((HashWriter{} << TX_NO_WITNESS(*this)).GetHash());
72 : : }
73 : :
74 : 1107888 : bool CTransaction::ComputeHasWitness() const
75 : : {
76 : 2132014 : return std::any_of(vin.begin(), vin.end(), [](const auto& input) {
77 [ + + + + : 906622 : return !input.scriptWitness.IsNull();
+ + + + +
+ + + +
+ ]
78 : 1107888 : });
79 : : }
80 : :
81 : 1107888 : Txid CTransaction::ComputeHash() const
82 : : {
83 : 1107888 : return Txid::FromUint256((HashWriter{} << TX_NO_WITNESS(*this)).GetHash());
84 : : }
85 : :
86 : 1107888 : Wtxid CTransaction::ComputeWitnessHash() const
87 : : {
88 [ + + ]: 1107888 : if (!HasWitness()) {
89 : 748486 : return Wtxid::FromUint256(hash.ToUint256());
90 : : }
91 : :
92 : 359402 : return Wtxid::FromUint256((HashWriter{} << TX_WITH_WITNESS(*this)).GetHash());
93 : : }
94 : :
95 [ + - + - : 301667 : CTransaction::CTransaction(const CMutableTransaction& tx) : vin(tx.vin), vout(tx.vout), version{tx.version}, nLockTime{tx.nLockTime}, m_has_witness{ComputeHasWitness()}, hash{ComputeHash()}, m_witness_hash{ComputeWitnessHash()} {}
+ - + - ]
96 [ + - + - : 806221 : CTransaction::CTransaction(CMutableTransaction&& tx) : vin(std::move(tx.vin)), vout(std::move(tx.vout)), version{tx.version}, nLockTime{tx.nLockTime}, m_has_witness{ComputeHasWitness()}, hash{ComputeHash()}, m_witness_hash{ComputeWitnessHash()} {}
+ - ]
97 : :
98 : 7068393 : CAmount CTransaction::GetValueOut() const
99 : : {
100 : 7068393 : CAmount nValueOut = 0;
101 [ + + ]: 21314131 : for (const auto& tx_out : vout) {
102 [ + - - + ]: 14245738 : if (!MoneyRange(tx_out.nValue) || !MoneyRange(nValueOut + tx_out.nValue))
103 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": value out of range");
104 : 14245738 : nValueOut += tx_out.nValue;
105 : : }
106 [ - + ]: 7068393 : assert(MoneyRange(nValueOut));
107 : 7068393 : return nValueOut;
108 : : }
109 : :
110 : 16624 : unsigned int CTransaction::GetTotalSize() const
111 : : {
112 : 16624 : return ::GetSerializeSize(TX_WITH_WITNESS(*this));
113 : : }
114 : :
115 : 1407 : std::string CTransaction::ToString() const
116 : : {
117 [ + - ]: 1407 : std::string str;
118 [ + - ]: 2814 : str += strprintf("CTransaction(hash=%s, ver=%u, vin.size=%u, vout.size=%u, nLockTime=%u)\n",
119 [ + - ]: 2814 : GetHash().ToString().substr(0,10),
120 : 1407 : version,
121 [ + - ]: 1407 : vin.size(),
122 : 1407 : vout.size(),
123 [ + - ]: 2814 : nLockTime);
124 [ + + ]: 5055 : for (const auto& tx_in : vin)
125 [ + - + - : 10944 : str += " " + tx_in.ToString() + "\n";
+ - ]
126 [ + + ]: 5055 : for (const auto& tx_in : vin)
127 [ + - + - : 10944 : str += " " + tx_in.scriptWitness.ToString() + "\n";
+ - ]
128 [ + + ]: 10801 : for (const auto& tx_out : vout)
129 [ + - + - : 28182 : str += " " + tx_out.ToString() + "\n";
+ - ]
130 : 1407 : return str;
131 : 0 : }
|