# HG changeset patch # User Wladimir J. van der Laan # Date 1346685096 25200 # Node ID 83b24f40896fa345f7c23d7ec336450c9c9c94b9 # Parent 9b67399e93a315c2a4f5f28792fff192451f4e12# Parent 1a08d5de36c438ee0caef0385405239a2067c98d Merge pull request #1743 from xanatos/patch-14 Changed nprev->pprev diff --git a/src/main.h b/src/main.h --- a/src/main.h +++ b/src/main.h @@ -1174,7 +1174,7 @@ 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());