diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-04-07 03:40:33 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2013-04-07 03:43:55 +0200 |
commit | 1c06aa98c63fff02679d446588fad06ae8cd706f (patch) | |
tree | 505b78cebe55e09d00d54521c434cc0af2397165 /src/wallet.h | |
parent | ab806a69a23c47e75821aa8a1fcd8d7f9e32999e (diff) |
Always print full hashes (tx, block, inv)
Diffstat (limited to 'src/wallet.h')
-rw-r--r-- | src/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.h b/src/wallet.h index e750bfd89e..2e007557b0 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -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 |