diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-03-29 16:21:16 +0100 |
|---|---|---|
| committer | langerhans <[email protected]> | 2014-05-26 18:54:49 +0200 |
| commit | a8f53a2a2866e1dbe2aeb7e1b5259f91ad98cda7 (patch) | |
| tree | d7a2a8b94cd18b55ced98b0d86ccfd3507fd187a /src/main.cpp | |
| parent | nHighTransactionFeeWarning (bitcoin/bitcoin@ffeb47366df02b7f859ce3e64f2304967... (diff) | |
| download | archived-discoin-a8f53a2a2866e1dbe2aeb7e1b5259f91ad98cda7.tar.xz archived-discoin-a8f53a2a2866e1dbe2aeb7e1b5259f91ad98cda7.zip | |
Fix printblocktree output (bitcoin/bitcoin@af4c2ac8ce36988d529adbc9542e6ba520ac1f46)
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 6c0848f11..19ce3cac9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3134,7 +3134,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()), |