diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-31 04:47:25 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-31 04:47:32 +0200 |
commit | 09b9c2fcd51bf44be1470c82d27b9893f504d6ba (patch) | |
tree | 3611b9cf9ce4ab6f6600ec5d92e7c16bac660c75 /src | |
parent | b725af7599004cddfed714b597fb35687f8a7a87 (diff) | |
parent | af4c2ac8ce36988d529adbc9542e6ba520ac1f46 (diff) |
Merge pull request #3980
af4c2ac Fix `-printblocktree` output (Wladimir J. van der Laan)
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 836c86483a..12f76cc9ea 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3021,7 +3021,7 @@ void PrintBlockTree() // print item CBlock block; ReadBlockFromDisk(block, pindex); - LogPrintf("%d (blk%05u.dat:0x%x) %s tx %"PRIszu"", + LogPrintf("%d (blk%05u.dat:0x%x) %s tx %"PRIszu"\n", pindex->nHeight, pindex->GetBlockPos().nFile, pindex->GetBlockPos().nPos, DateTimeStrFormat("%Y-%m-%d %H:%M:%S", block.GetBlockTime()), |