|
|
@ -42,7 +42,7 @@ QString TransactionDesc::FormatTxStatus(const CWalletTx& wtx) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int unit) |
|
|
|
QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, TransactionRecord *rec, int unit) |
|
|
|
{ |
|
|
|
{ |
|
|
|
QString strHTML; |
|
|
|
QString strHTML; |
|
|
|
|
|
|
|
|
|
|
@ -86,18 +86,14 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int u |
|
|
|
if (nNet > 0) |
|
|
|
if (nNet > 0) |
|
|
|
{ |
|
|
|
{ |
|
|
|
// Credit
|
|
|
|
// Credit
|
|
|
|
BOOST_FOREACH(const CTxOut& txout, wtx.vout) |
|
|
|
if (CBitcoinAddress(rec->address).IsValid()) |
|
|
|
{ |
|
|
|
|
|
|
|
if (wallet->IsMine(txout)) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
CTxDestination address; |
|
|
|
|
|
|
|
if (ExtractDestination(txout.scriptPubKey, address) && IsMine(*wallet, address)) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
CTxDestination address = CBitcoinAddress(rec->address).Get(); |
|
|
|
if (wallet->mapAddressBook.count(address)) |
|
|
|
if (wallet->mapAddressBook.count(address)) |
|
|
|
{ |
|
|
|
{ |
|
|
|
strHTML += "<b>" + tr("From") + ":</b> " + tr("unknown") + "<br>"; |
|
|
|
strHTML += "<b>" + tr("From") + ":</b> " + tr("unknown") + "<br>"; |
|
|
|
strHTML += "<b>" + tr("To") + ":</b> "; |
|
|
|
strHTML += "<b>" + tr("To") + ":</b> "; |
|
|
|
strHTML += GUIUtil::HtmlEscape(CBitcoinAddress(address).ToString()); |
|
|
|
strHTML += GUIUtil::HtmlEscape(rec->address); |
|
|
|
if (!wallet->mapAddressBook[address].name.empty()) |
|
|
|
if (!wallet->mapAddressBook[address].name.empty()) |
|
|
|
strHTML += " (" + tr("own address") + ", " + tr("label") + ": " + GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + ")"; |
|
|
|
strHTML += " (" + tr("own address") + ", " + tr("label") + ": " + GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + ")"; |
|
|
|
else |
|
|
|
else |
|
|
@ -105,9 +101,6 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int u |
|
|
|
strHTML += "<br>"; |
|
|
|
strHTML += "<br>"; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -224,7 +217,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int u |
|
|
|
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> " + TransactionRecord::formatSubTxId(wtx.GetHash(), vout) + "<br>"; |
|
|
|
strHTML += "<b>" + tr("Transaction ID") + ":</b> " + TransactionRecord::formatSubTxId(wtx.GetHash(), rec->idx) + "<br>"; |
|
|
|
|
|
|
|
|
|
|
|
// Message from normal bitcoin:URI (bitcoin:123...?message=example)
|
|
|
|
// Message from normal bitcoin:URI (bitcoin:123...?message=example)
|
|
|
|
foreach (const PAIRTYPE(string, string)& r, wtx.vOrderForm) |
|
|
|
foreach (const PAIRTYPE(string, string)& r, wtx.vOrderForm) |
|
|
|