From c34a32699ecfb8b5557922d7674db26771cec6ac Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 20 Aug 2012 19:22:15 +0000 Subject: [PATCH] Change block references in debug.log to full hash instead of just 0..20 --- src/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.h b/src/main.h index 7b368ef2b..d06658626 100644 --- a/src/main.h +++ b/src/main.h @@ -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);