2013-11-04 16:20:43 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-27 19:48:42 +02:00
|
|
|
#ifndef TRANSACTIONRECORD_H
|
|
|
|
#define TRANSACTIONRECORD_H
|
|
|
|
|
2011-06-28 21:41:56 +02:00
|
|
|
#include "uint256.h"
|
2011-05-27 19:48:42 +02:00
|
|
|
|
|
|
|
#include <QList>
|
2013-09-05 12:23:08 +02:00
|
|
|
#include <QString>
|
2011-05-27 19:48:42 +02:00
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
class CWallet;
|
2011-06-28 21:41:56 +02:00
|
|
|
class CWalletTx;
|
2011-06-26 19:23:24 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** UI model for transaction status. The transaction status is the part of a transaction that will change over time.
|
|
|
|
*/
|
2011-05-27 19:48:42 +02:00
|
|
|
class TransactionStatus
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TransactionStatus():
|
2014-06-28 01:47:33 +02:00
|
|
|
countsForBalance(false),
|
|
|
|
sortKey(""),
|
|
|
|
matures_in(0),
|
|
|
|
status(Offline),
|
|
|
|
hasConflicting(false),
|
|
|
|
depth(0),
|
|
|
|
open_for(0),
|
|
|
|
cur_num_blocks(-1),
|
2014-06-27 03:31:05 +02:00
|
|
|
cur_num_conflicts(-1)
|
2014-06-28 01:47:33 +02:00
|
|
|
{
|
|
|
|
}
|
2011-05-27 19:48:42 +02:00
|
|
|
|
|
|
|
enum Status {
|
2014-02-20 14:09:09 +01:00
|
|
|
Confirmed, /**< Have 6 or more confirmations (normal tx) or fully mature (mined tx) **/
|
|
|
|
/// Normal (sent/received) transactions
|
|
|
|
OpenUntilDate, /**< Transaction not yet final, waiting for date */
|
|
|
|
OpenUntilBlock, /**< Transaction not yet final, waiting for block */
|
|
|
|
Offline, /**< Not sent to any other nodes **/
|
|
|
|
Unconfirmed, /**< Not yet mined into a block **/
|
|
|
|
Confirming, /**< Confirmed, but waiting for the recommended number of confirmations **/
|
|
|
|
Conflicted, /**< Conflicts with other transaction or mempool **/
|
|
|
|
/// Generated (mined) transactions
|
|
|
|
Immature, /**< Mined but waiting for maturity */
|
|
|
|
MaturesWarning, /**< Transaction will likely not mature because no nodes have confirmed */
|
|
|
|
NotAccepted /**< Mined but not accepted */
|
2011-05-27 19:48:42 +02:00
|
|
|
};
|
|
|
|
|
2014-02-20 14:09:09 +01:00
|
|
|
/// Transaction counts towards available balance
|
|
|
|
bool countsForBalance;
|
|
|
|
/// Sorting key based on status
|
2011-05-27 19:48:42 +02:00
|
|
|
std::string sortKey;
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** @name Generated (mined) transactions
|
|
|
|
@{*/
|
2011-05-27 19:48:42 +02:00
|
|
|
int matures_in;
|
2011-11-13 13:19:52 +01:00
|
|
|
/**@}*/
|
2011-05-27 19:48:42 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** @name Reported status
|
|
|
|
@{*/
|
2011-05-27 19:48:42 +02:00
|
|
|
Status status;
|
2014-06-27 03:31:05 +02:00
|
|
|
|
|
|
|
// Has conflicting transactions spending same prevout
|
|
|
|
bool hasConflicting;
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
qint64 depth;
|
|
|
|
qint64 open_for; /**< Timestamp if status==OpenUntilDate, otherwise number
|
2013-01-09 09:14:48 +01:00
|
|
|
of additional blocks that need to be mined before
|
|
|
|
finalization */
|
2011-11-13 13:19:52 +01:00
|
|
|
/**@}*/
|
2011-06-04 21:41:31 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Current number of blocks (to know whether cached status is still valid) */
|
2011-06-04 21:41:31 +02:00
|
|
|
int cur_num_blocks;
|
2014-06-27 03:31:05 +02:00
|
|
|
|
|
|
|
/** Number of conflicts received into wallet as of last status update */
|
|
|
|
int64_t cur_num_conflicts;
|
|
|
|
|
2011-05-27 19:48:42 +02:00
|
|
|
};
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** UI model for a transaction. A core transaction can be represented by multiple UI transactions if it has
|
|
|
|
multiple outputs.
|
|
|
|
*/
|
2011-05-27 19:48:42 +02:00
|
|
|
class TransactionRecord
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
Other,
|
|
|
|
Generated,
|
|
|
|
SendToAddress,
|
2011-12-28 11:14:05 +01:00
|
|
|
SendToOther,
|
2011-05-28 22:31:27 +02:00
|
|
|
RecvWithAddress,
|
2011-12-28 11:14:05 +01:00
|
|
|
RecvFromOther,
|
2011-05-27 19:48:42 +02:00
|
|
|
SendToSelf
|
|
|
|
};
|
|
|
|
|
2014-02-20 14:09:09 +01:00
|
|
|
/** Number of confirmation recommended for accepting a transaction */
|
|
|
|
static const int RecommendedNumConfirmations = 6;
|
2011-06-20 21:31:06 +02:00
|
|
|
|
2011-05-27 19:48:42 +02:00
|
|
|
TransactionRecord():
|
2011-06-04 21:41:31 +02:00
|
|
|
hash(), time(0), type(Other), address(""), debit(0), credit(0), idx(0)
|
2011-05-27 19:48:42 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
TransactionRecord(uint256 hash, qint64 time):
|
2011-05-27 19:48:42 +02:00
|
|
|
hash(hash), time(time), type(Other), address(""), debit(0),
|
2011-06-04 21:41:31 +02:00
|
|
|
credit(0), idx(0)
|
2011-05-27 19:48:42 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
TransactionRecord(uint256 hash, qint64 time,
|
2011-05-27 19:48:42 +02:00
|
|
|
Type type, const std::string &address,
|
2013-04-13 07:13:08 +02:00
|
|
|
qint64 debit, qint64 credit):
|
2011-05-27 19:48:42 +02:00
|
|
|
hash(hash), time(time), type(type), address(address), debit(debit), credit(credit),
|
2011-06-04 21:41:31 +02:00
|
|
|
idx(0)
|
2011-05-27 19:48:42 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Decompose CWallet transaction to model transaction records.
|
2011-05-28 20:32:19 +02:00
|
|
|
*/
|
2011-05-27 19:48:42 +02:00
|
|
|
static bool showTransaction(const CWalletTx &wtx);
|
2011-06-26 19:23:24 +02:00
|
|
|
static QList<TransactionRecord> decomposeTransaction(const CWallet *wallet, const CWalletTx &wtx);
|
2011-05-27 19:48:42 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** @name Immutable transaction attributes
|
|
|
|
@{*/
|
2011-05-27 19:48:42 +02:00
|
|
|
uint256 hash;
|
2013-04-13 07:13:08 +02:00
|
|
|
qint64 time;
|
2011-05-27 19:48:42 +02:00
|
|
|
Type type;
|
|
|
|
std::string address;
|
2013-04-13 07:13:08 +02:00
|
|
|
qint64 debit;
|
|
|
|
qint64 credit;
|
2011-11-13 13:19:52 +01:00
|
|
|
/**@}*/
|
2011-05-27 19:48:42 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Subtransaction index, for sort key */
|
2011-06-04 21:41:31 +02:00
|
|
|
int idx;
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Status: can change with block chain update */
|
2011-05-27 19:48:42 +02:00
|
|
|
TransactionStatus status;
|
2011-06-04 21:41:31 +02:00
|
|
|
|
2014-04-05 21:36:48 +02:00
|
|
|
/** Whether the transaction was sent/received with a watch-only address */
|
|
|
|
bool involvesWatchAddress;
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Return the unique identifier for this transaction (part) */
|
2013-09-05 12:23:08 +02:00
|
|
|
QString getTxID() const;
|
|
|
|
|
|
|
|
/** Format subtransaction id */
|
|
|
|
static QString formatSubTxId(const uint256 &hash, int vout);
|
2011-07-07 14:27:16 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Update status from core wallet tx.
|
2011-06-04 21:41:31 +02:00
|
|
|
*/
|
|
|
|
void updateStatus(const CWalletTx &wtx);
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Return whether a status update is needed.
|
2011-06-04 21:41:31 +02:00
|
|
|
*/
|
2014-06-27 03:31:05 +02:00
|
|
|
bool statusUpdateNeeded(int64_t nConflictsReceived);
|
2011-05-27 19:48:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TRANSACTIONRECORD_H
|