From 9eb7fc58426e8d3afedd9959c21566a3d2eaf6d8 Mon Sep 17 00:00:00 2001 From: xanatos Date: Tue, 28 Aug 2012 23:25:52 +0300 Subject: Changed nprev->pprev It should be pprev, because the next one is pnext, and it's printing the memory address of the CBlockIndex (so pSomething). --- src/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.h b/src/main.h index dc9f9ee74a..b8057a295e 100644 --- a/src/main.h +++ b/src/main.h @@ -1174,7 +1174,7 @@ public: std::string ToString() const { - return strprintf("CBlockIndex(nprev=%08x, pnext=%08x, nFile=%d, nBlockPos=%-6d nHeight=%d, merkle=%s, hashBlock=%s)", + return strprintf("CBlockIndex(pprev=%08x, pnext=%08x, nFile=%d, nBlockPos=%-6d nHeight=%d, merkle=%s, hashBlock=%s)", pprev, pnext, nFile, nBlockPos, nHeight, hashMerkleRoot.ToString().substr(0,10).c_str(), GetBlockHash().ToString().substr(0,20).c_str()); -- cgit v1.2.3