qt: add vout index to transaction id in transactions details dialog

This commit is contained in:
Wladimir J. van der Laan
2013-09-05 12:23:08 +02:00
parent d22d9753cc
commit ed4c7fd4fd
5 changed files with 19 additions and 9 deletions

View File

@@ -4,6 +4,7 @@
#include "uint256.h"
#include <QList>
#include <QString>
class CWallet;
class CWalletTx;
@@ -117,7 +118,10 @@ public:
TransactionStatus status;
/** 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.
*/