aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-09-03 08:11:36 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2012-09-03 08:11:36 -0700
commit9d7da11458b53dc12053d3625d05a21e8a7eeb2f (patch)
tree60a90b9ef99b6126214d9b89813278cf10a27f1a
parentacbe4a1f32a1cb145349cd753022b182e6baa1da (diff)
parent9eb7fc58426e8d3afedd9959c21566a3d2eaf6d8 (diff)
downloadbitcoin-9d7da11458b53dc12053d3625d05a21e8a7eeb2f.tar.xz
Merge pull request #1743 from xanatos/patch-14
Changed nprev->pprev
-rw-r--r--src/main.h2
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());