Browse Source

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

0.8
Luke Dashjr 12 years ago
parent
commit
c34a32699e
  1. 2
      src/main.h

2
src/main.h

@ -176,7 +176,7 @@ CBlockIndex * InsertBlockIndex(uint256 hash); @@ -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);

Loading…
Cancel
Save