Merge pull request #2976 from laanwj/2013_09_txid_details

qt: add vout index to transaction id in transactions details dialog
This commit is contained in:
Wladimir J. van der Laan 2013-09-06 04:21:45 -07:00
commit 495242c1ad
5 changed files with 19 additions and 9 deletions

View File

@ -8,6 +8,7 @@
#include "ui_interface.h" #include "ui_interface.h"
#include "base58.h" #include "base58.h"
#include "paymentserver.h" #include "paymentserver.h"
#include "transactionrecord.h"
#include <string> #include <string>
@ -32,7 +33,7 @@ QString TransactionDesc::FormatTxStatus(const CWalletTx& wtx)
} }
} }
QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int unit) QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int unit)
{ {
QString strHTML; QString strHTML;
@ -215,7 +216,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int unit)
if (wtx.mapValue.count("comment") && !wtx.mapValue["comment"].empty()) if (wtx.mapValue.count("comment") && !wtx.mapValue["comment"].empty())
strHTML += "<br><b>" + tr("Comment") + ":</b><br>" + GUIUtil::HtmlEscape(wtx.mapValue["comment"], true) + "<br>"; strHTML += "<br><b>" + tr("Comment") + ":</b><br>" + GUIUtil::HtmlEscape(wtx.mapValue["comment"], true) + "<br>";
strHTML += "<b>" + tr("Transaction ID") + ":</b> " + wtx.GetHash().ToString().c_str() + "<br>"; strHTML += "<b>" + tr("Transaction ID") + ":</b> " + TransactionRecord::formatSubTxId(wtx.GetHash(), vout) + "<br>";
// //
// PaymentRequest info: // PaymentRequest info:
@ -225,7 +226,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int unit)
if (r.first == "PaymentRequest") if (r.first == "PaymentRequest")
{ {
PaymentRequestPlus req; PaymentRequestPlus req;
req.parse(QByteArray::fromRawData(r.second.c_str(), r.second.size())); req.parse(QByteArray::fromRawData(r.second.data(), r.second.size()));
QString merchant; QString merchant;
if (req.getMerchant(PaymentServer::getCertStore(), merchant)) if (req.getMerchant(PaymentServer::getCertStore(), merchant))
strHTML += "<b>" + tr("Merchant") + ":</b> " + GUIUtil::HtmlEscape(merchant) + "<br>"; strHTML += "<b>" + tr("Merchant") + ":</b> " + GUIUtil::HtmlEscape(merchant) + "<br>";

View File

@ -14,7 +14,7 @@ class TransactionDesc: public QObject
Q_OBJECT Q_OBJECT
public: public:
static QString toHTML(CWallet *wallet, CWalletTx &wtx, int unit); static QString toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int unit);
private: private:
TransactionDesc() {} TransactionDesc() {}

View File

@ -224,8 +224,13 @@ bool TransactionRecord::statusUpdateNeeded()
return status.cur_num_blocks != nBestHeight; return status.cur_num_blocks != nBestHeight;
} }
std::string TransactionRecord::getTxID() QString TransactionRecord::getTxID() const
{ {
return hash.ToString() + strprintf("-%03d", idx); return formatSubTxId(hash, idx);
}
QString TransactionRecord::formatSubTxId(const uint256 &hash, int vout)
{
return QString::fromStdString(hash.ToString() + strprintf("-%03d", vout));
} }

View File

@ -4,6 +4,7 @@
#include "uint256.h" #include "uint256.h"
#include <QList> #include <QList>
#include <QString>
class CWallet; class CWallet;
class CWalletTx; class CWalletTx;
@ -117,7 +118,10 @@ public:
TransactionStatus status; TransactionStatus status;
/** Return the unique identifier for this transaction (part) */ /** Return the unique identifier for this transaction (part) */
std::string getTxID(); QString getTxID() const;
/** Format subtransaction id */
static QString formatSubTxId(const uint256 &hash, int vout);
/** Update status from core wallet tx. /** Update status from core wallet tx.
*/ */

View File

@ -210,7 +210,7 @@ public:
std::map<uint256, CWalletTx>::iterator mi = wallet->mapWallet.find(rec->hash); std::map<uint256, CWalletTx>::iterator mi = wallet->mapWallet.find(rec->hash);
if(mi != wallet->mapWallet.end()) if(mi != wallet->mapWallet.end())
{ {
return TransactionDesc::toHTML(wallet, mi->second, unit); return TransactionDesc::toHTML(wallet, mi->second, rec->idx, unit);
} }
} }
return QString(""); return QString("");
@ -571,7 +571,7 @@ QVariant TransactionTableModel::data(const QModelIndex &index, int role) const
case AmountRole: case AmountRole:
return rec->credit + rec->debit; return rec->credit + rec->debit;
case TxIDRole: case TxIDRole:
return QString::fromStdString(rec->getTxID()); return rec->getTxID();
case ConfirmedRole: case ConfirmedRole:
// Return True if transaction counts for balance // Return True if transaction counts for balance
return rec->status.confirmed && !(rec->type == TransactionRecord::Generated && return rec->status.confirmed && !(rec->type == TransactionRecord::Generated &&