Always print full hashes (tx, block, inv)

This commit is contained in:
Pieter Wuille
2013-04-07 03:40:33 +02:00
parent ab806a69a2
commit 1c06aa98c6
6 changed files with 44 additions and 54 deletions

View File

@@ -704,7 +704,7 @@ public:
std::string ToString() const
{
return strprintf("COutput(%s, %d, %d) [%s]", tx->GetHash().ToString().substr(0,10).c_str(), i, nDepth, FormatMoney(tx->vout[i].nValue).c_str());
return strprintf("COutput(%s, %d, %d) [%s]", tx->GetHash().ToString().c_str(), i, nDepth, FormatMoney(tx->vout[i].nValue).c_str());
}
void print() const