Bitcoin Core 31.99.0
P2P Digital Currency
transactionrecord.cpp
Go to the documentation of this file.
1// Copyright (c) 2011-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
6
7#include <chain.h>
8#include <interfaces/wallet.h>
9#include <key_io.h>
10
11#include <cstdint>
12
13#include <QDateTime>
14
15/* Return positive answer if transaction should be shown in list.
16 */
18{
19 // There are currently no cases where we hide transactions, but
20 // we may want to use this in the future for things like RBF.
21 return true;
22}
23
24/*
25 * Decompose CWallet transaction to model transaction records.
26 */
28{
29 QList<TransactionRecord> parts;
30 int64_t nTime = wtx.time;
31 CAmount nCredit = wtx.credit;
32 CAmount nDebit = wtx.debit;
33 CAmount nNet = nCredit - nDebit;
34 Txid hash = wtx.tx->GetHash();
35
36 bool all_from_me = true;
37 bool any_from_me = false;
38 if (wtx.is_coinbase) {
39 all_from_me = false;
40 } else {
41 for (const bool mine : wtx.txin_is_mine)
42 {
43 all_from_me = all_from_me && mine;
44 if (mine) any_from_me = true;
45 }
46 }
47
48 if (all_from_me || !any_from_me) {
49 CAmount nTxFee = nDebit - wtx.tx->GetValueOut();
50
51 for(unsigned int i = 0; i < wtx.tx->vout.size(); i++)
52 {
53 const CTxOut& txout = wtx.tx->vout[i];
54
55 if (all_from_me) {
56 // Change is only really possible if we're the sender
57 // Otherwise, someone just sent bitcoins to a change address, which should be shown
58 if (wtx.txout_is_change[i]) {
59 continue;
60 }
61
62 //
63 // Debit
64 //
65
66 TransactionRecord sub(hash, nTime);
67 sub.idx = i;
68
69 if (!std::get_if<CNoDestination>(&wtx.txout_address[i]))
70 {
71 // Sent to Bitcoin Address
74 }
75 else
76 {
77 // Sent to IP, or other non-address transaction like OP_EVAL
79 sub.address = wtx.comment_to.value_or("");
80 }
81
82 CAmount nValue = txout.nValue;
83 /* Add fee to first output */
84 if (nTxFee > 0)
85 {
86 nValue += nTxFee;
87 nTxFee = 0;
88 }
89 sub.debit = -nValue;
90
91 parts.append(sub);
92 }
93
94 bool mine = wtx.txout_is_mine[i];
95 if(mine)
96 {
97 //
98 // Credit
99 //
100
101 TransactionRecord sub(hash, nTime);
102 sub.idx = i; // vout index
103 sub.credit = txout.nValue;
104 if (wtx.txout_address_is_mine[i])
105 {
106 // Received by Bitcoin Address
109 }
110 else
111 {
112 // Received by IP connection (deprecated features), or a multisignature or other non-simple transaction
114 sub.address = wtx.from.value_or("");
115 }
116 if (wtx.is_coinbase)
117 {
118 // Generated
120 }
121
122 parts.append(sub);
123 }
124 }
125 } else {
126 //
127 // Mixed debit transaction, can't break down payees
128 //
129 parts.append(TransactionRecord(hash, nTime, TransactionRecord::Other, "", nNet, 0));
130 }
131
132 return parts;
133}
134
135void TransactionRecord::updateStatus(const interfaces::WalletTxStatus& wtx, const uint256& block_hash, int numBlocks, int64_t block_time)
136{
137 // Determine transaction status
138
139 // Sort order, unrecorded transactions sort to the top
140 int typesort;
141 switch (type) {
142 case SendToAddress: case SendToOther:
143 typesort = 2; break;
145 typesort = 3; break;
146 default:
147 typesort = 9;
148 }
149 status.sortKey = strprintf("%010d-%01d-%010u-%03d-%d",
150 wtx.block_height,
151 wtx.is_coinbase ? 1 : 0,
152 wtx.time_received,
153 idx,
154 typesort);
157 status.m_cur_block_hash = block_hash;
158
159 // For generated transactions, determine maturity
161 if (wtx.blocks_to_maturity > 0)
162 {
164
165 if (wtx.is_in_main_chain)
166 {
168 }
169 else
170 {
172 }
173 }
174 else
175 {
177 }
178 }
179 else
180 {
181 if (status.depth < 0)
182 {
184 }
185 else if (status.depth == 0)
186 {
188 if (wtx.is_abandoned)
190 }
192 {
194 }
195 else
196 {
198 }
199 }
200 status.needsUpdate = false;
201}
202
204{
205 assert(!block_hash.IsNull());
206 return status.m_cur_block_hash != block_hash || status.needsUpdate;
207}
208
210{
211 return QString::fromStdString(hash.ToString());
212}
213
215{
216 return idx;
217}
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
An output of a transaction.
Definition: transaction.h:140
CAmount nValue
Definition: transaction.h:142
UI model for a transaction.
int idx
Subtransaction index, for sort key.
static QList< TransactionRecord > decomposeTransaction(const interfaces::WalletTx &wtx)
static const int RecommendedNumConfirmations
Number of confirmation recommended for accepting a transaction.
static bool showTransaction()
Decompose CWallet transaction to model transaction records.
TransactionStatus status
Status: can change with block chain update.
int getOutputIndex() const
Return the output index of the subtransaction
QString getTxHash() const
Return the unique identifier for this transaction (part)
bool statusUpdateNeeded(const uint256 &block_hash) const
Return whether a status update is needed.
void updateStatus(const interfaces::WalletTxStatus &wtx, const uint256 &block_hash, int numBlocks, int64_t block_time)
Update status from core wallet tx.
constexpr bool IsNull() const
Definition: uint256.h:49
std::string ToString() const
256-bit opaque blob.
Definition: uint256.h:196
std::string EncodeDestination(const CTxDestination &dest)
Definition: key_io.cpp:295
bool countsForBalance
Transaction counts towards available balance.
uint256 m_cur_block_hash
Current block hash (to know whether cached status is still valid)
@ Confirmed
Have 6 or more confirmations (normal tx) or fully mature (mined tx)
@ Unconfirmed
Normal (sent/received) transactions.
@ Immature
Generated (mined) transactions.
@ Confirming
Confirmed, but waiting for the recommended number of confirmations.
@ NotAccepted
Mined but not accepted.
@ Conflicted
Conflicts with other transaction or mempool.
@ Abandoned
Abandoned from the wallet.
std::string sortKey
Sorting key based on status.
std::vector< bool > txin_is_mine
Definition: wallet.h:382
std::vector< CTxDestination > txout_address
Definition: wallet.h:385
std::vector< bool > txout_address_is_mine
Definition: wallet.h:386
CTransactionRef tx
Definition: wallet.h:381
std::optional< std::string > comment_to
Definition: wallet.h:394
std::vector< bool > txout_is_change
Definition: wallet.h:384
std::vector< bool > txout_is_mine
Definition: wallet.h:383
std::optional< std::string > from
Definition: wallet.h:391
Updated transaction status.
Definition: wallet.h:402
unsigned int time_received
Definition: wallet.h:406
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1172
assert(!tx.IsCoinBase())