changeset 3450:83b24f40896f draft

Merge pull request #1743 from xanatos/patch-14 Changed nprev->pprev
author Wladimir J. van der Laan <laanwj@gmail.com>
date Mon, 03 Sep 2012 08:11:36 -0700
parents 9b67399e93a3 (current diff) 1a08d5de36c4 (diff)
children c29a3eb623fc
files
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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());