mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 23:07:59 +01:00
099dbe4224
GUI: TransactionRecord: When time/index/etc match, sort send before receive (Luke Dashjr)2d182f77cd
Bugfix: Ignore ischange flag when we're not the sender (Luke Dashjr)71fbdb7f40
GUI: Remove SendToSelf TransactionRecord type (Luke Dashjr)f3fbe99fcf
GUI: TransactionRecord: Refactor to turn send-to-self into send+receive pairs (Luke Dashjr)b9765ba1d6
GUI: TransactionRecord: Use "any from me" as the criteria for deciding whether a transaction is a send or receive (Luke Dashjr) Pull request description: Makes the GUI transaction list more like the RPC, and IMO clearer in general. As a side effect, this also fixes the GUI entries when a transaction is a net profit to us, but some inputs were also from us. Originally https://github.com/bitcoin/bitcoin/pull/15115 Has Concept ACKs from @*Empact @*jonasschnelli ACKs for top commit: hebasto: ACK099dbe4224
. Tree-SHA512: 7d581add2f59431aa019126d54232a1f15723def5147d7a1b672e9b6d525b6e5a944cc437701aa1bd5bd0fbe557a3d1f4b239337f42bdba4fe1d3960442d0e3b
135 lines
3.9 KiB
C++
135 lines
3.9 KiB
C++
// Copyright (c) 2011-2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_QT_TRANSACTIONRECORD_H
|
|
#define BITCOIN_QT_TRANSACTIONRECORD_H
|
|
|
|
#include <consensus/amount.h>
|
|
#include <uint256.h>
|
|
|
|
#include <QList>
|
|
#include <QString>
|
|
|
|
namespace interfaces {
|
|
class Node;
|
|
class Wallet;
|
|
struct WalletTx;
|
|
struct WalletTxStatus;
|
|
}
|
|
|
|
/** UI model for transaction status. The transaction status is the part of a transaction that will change over time.
|
|
*/
|
|
struct TransactionStatus {
|
|
enum Status {
|
|
Confirmed, /**< Have 6 or more confirmations (normal tx) or fully mature (mined tx) **/
|
|
/// Normal (sent/received) transactions
|
|
Unconfirmed, /**< Not yet mined into a block **/
|
|
Confirming, /**< Confirmed, but waiting for the recommended number of confirmations **/
|
|
Conflicted, /**< Conflicts with other transaction or mempool **/
|
|
Abandoned, /**< Abandoned from the wallet **/
|
|
/// Generated (mined) transactions
|
|
Immature, /**< Mined but waiting for maturity */
|
|
NotAccepted /**< Mined but not accepted */
|
|
};
|
|
|
|
/// Transaction counts towards available balance
|
|
bool countsForBalance{false};
|
|
/// Sorting key based on status
|
|
std::string sortKey;
|
|
|
|
/** @name Generated (mined) transactions
|
|
@{*/
|
|
int matures_in{0};
|
|
/**@}*/
|
|
|
|
/** @name Reported status
|
|
@{*/
|
|
Status status{Unconfirmed};
|
|
qint64 depth{0};
|
|
/**@}*/
|
|
|
|
/** Current block hash (to know whether cached status is still valid) */
|
|
uint256 m_cur_block_hash{};
|
|
|
|
bool needsUpdate{false};
|
|
};
|
|
|
|
/** UI model for a transaction. A core transaction can be represented by multiple UI transactions if it has
|
|
multiple outputs.
|
|
*/
|
|
class TransactionRecord
|
|
{
|
|
public:
|
|
enum Type
|
|
{
|
|
Other,
|
|
Generated,
|
|
SendToAddress,
|
|
SendToOther,
|
|
RecvWithAddress,
|
|
RecvFromOther,
|
|
};
|
|
|
|
/** Number of confirmation recommended for accepting a transaction */
|
|
static const int RecommendedNumConfirmations = 6;
|
|
|
|
TransactionRecord():
|
|
hash(), time(0), type(Other), debit(0), credit(0), idx(0)
|
|
{
|
|
}
|
|
|
|
TransactionRecord(uint256 _hash, qint64 _time):
|
|
hash(_hash), time(_time), type(Other), debit(0),
|
|
credit(0), idx(0)
|
|
{
|
|
}
|
|
|
|
TransactionRecord(uint256 _hash, qint64 _time,
|
|
Type _type, const std::string &_address,
|
|
const CAmount& _debit, const CAmount& _credit):
|
|
hash(_hash), time(_time), type(_type), address(_address), debit(_debit), credit(_credit),
|
|
idx(0)
|
|
{
|
|
}
|
|
|
|
/** Decompose CWallet transaction to model transaction records.
|
|
*/
|
|
static bool showTransaction();
|
|
static QList<TransactionRecord> decomposeTransaction(const interfaces::WalletTx& wtx);
|
|
|
|
/** @name Immutable transaction attributes
|
|
@{*/
|
|
uint256 hash;
|
|
qint64 time;
|
|
Type type;
|
|
std::string address;
|
|
CAmount debit;
|
|
CAmount credit;
|
|
/**@}*/
|
|
|
|
/** Subtransaction index, for sort key */
|
|
int idx;
|
|
|
|
/** Status: can change with block chain update */
|
|
TransactionStatus status;
|
|
|
|
/** Whether the transaction was sent/received with a watch-only address */
|
|
bool involvesWatchAddress;
|
|
|
|
/** Return the unique identifier for this transaction (part) */
|
|
QString getTxHash() const;
|
|
|
|
/** Return the output index of the subtransaction */
|
|
int getOutputIndex() const;
|
|
|
|
/** Update status from core wallet tx.
|
|
*/
|
|
void updateStatus(const interfaces::WalletTxStatus& wtx, const uint256& block_hash, int numBlocks, int64_t block_time);
|
|
|
|
/** Return whether a status update is needed.
|
|
*/
|
|
bool statusUpdateNeeded(const uint256& block_hash) const;
|
|
};
|
|
|
|
#endif // BITCOIN_QT_TRANSACTIONRECORD_H
|