diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-03-31 04:47:25 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-03-31 04:47:32 +0200 |
| commit | 09b9c2fcd51bf44be1470c82d27b9893f504d6ba (patch) | |
| tree | 3611b9cf9ce4ab6f6600ec5d92e7c16bac660c75 /src/main.cpp | |
| parent | Merge pull request #3907 from schildbach/gitian-downloader-aschildbach-key (diff) | |
| parent | Fix `-printblocktree` output (diff) | |
| download | discoin-09b9c2fcd51bf44be1470c82d27b9893f504d6ba.tar.xz discoin-09b9c2fcd51bf44be1470c82d27b9893f504d6ba.zip | |
Merge pull request #3980
af4c2ac Fix `-printblocktree` output (Wladimir J. van der Laan)
Diffstat (limited to 'src/main.cpp')
| -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 836c86483..12f76cc9e 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()), |