[Qt] Fix Transaction details shows wrong To:

This commit is contained in:
Cozz Lovan
2014-05-28 01:38:40 +02:00
parent bdc7f1a101
commit b90711cabf
3 changed files with 16 additions and 22 deletions

View File

@@ -222,7 +222,7 @@ public:
std::map<uint256, CWalletTx>::iterator mi = wallet->mapWallet.find(rec->hash);
if(mi != wallet->mapWallet.end())
{
return TransactionDesc::toHTML(wallet, mi->second, rec->idx, unit);
return TransactionDesc::toHTML(wallet, mi->second, rec, unit);
}
}
return QString("");