Change block references in debug.log to full hash instead of just 0..20

This commit is contained in:
Luke Dashjr 2012-08-20 19:22:15 +00:00
parent f3a84c3a6b
commit c34a32699e
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ CBlockIndex * InsertBlockIndex(uint256 hash);
static inline std::string BlockHashStr(const uint256& hash)
{
return hash.ToString().substr(0, 20);
return hash.ToString();
}
bool GetWalletFile(CWallet* pwallet, std::string &strWalletFileOut);