aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-01-10 13:25:02 -0500
committerLuke Dashjr <luke-jr+git@utopios.org>2012-01-10 13:25:05 -0500
commitebf9065c227860d91c9e304c8a2cb2d62c7c55ef (patch)
tree06ff875c17303c3ca61c75f2535a48937488a4fc
parent2e555237d304c235b16c9460097703005d68cab0 (diff)
downloadbitcoin-ebf9065c227860d91c9e304c8a2cb2d62c7c55ef.tar.xz
Qt: Show transaction ID in details
-rw-r--r--src/qt/transactiondesc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp
index 8de63c1dee..089fe751b8 100644
--- a/src/qt/transactiondesc.cpp
+++ b/src/qt/transactiondesc.cpp
@@ -218,6 +218,8 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx)
if (!wtx.mapValue["comment"].empty())
strHTML += QString("<br><b>") + tr("Comment:") + "</b><br>" + GUIUtil::HtmlEscape(wtx.mapValue["comment"], true) + "<br>";
+ strHTML += QString("<b>") + tr("Transaction ID:") + "</b> " + wtx.GetHash().ToString().c_str() + "<br>";
+
if (wtx.IsCoinBase())
strHTML += QString("<br>") + tr("Generated coins must wait 120 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, it will change to \"not accepted\" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours.") + "<br>";