diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-09-03 08:11:36 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-09-03 08:11:36 -0700 |
commit | 9d7da11458b53dc12053d3625d05a21e8a7eeb2f (patch) | |
tree | 60a90b9ef99b6126214d9b89813278cf10a27f1a | |
parent | acbe4a1f32a1cb145349cd753022b182e6baa1da (diff) | |
parent | 9eb7fc58426e8d3afedd9959c21566a3d2eaf6d8 (diff) |
Merge pull request #1743 from xanatos/patch-14
Changed nprev->pprev
-rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
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()); |