Remove duplicate destination decoding

This commit is contained in:
João Barbosa 2017-09-06 21:44:33 +01:00
parent 8d0041e607
commit 86e6dd4b63

View file

@ -91,8 +91,8 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, TransactionReco
if (nNet > 0) if (nNet > 0)
{ {
// Credit // Credit
if (IsValidDestinationString(rec->address)) { CTxDestination address = DecodeDestination(rec->address);
CTxDestination address = DecodeDestination(rec->address); if (IsValidDestination(address)) {
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>";