diff options
| author | Alex Morcos <[email protected]> | 2015-11-17 22:23:39 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2015-11-17 22:23:39 -0500 |
| commit | e855b0152fa9d23fd49ccdd1b8e9427826b44a67 (patch) | |
| tree | c21affcfa0880034362adeaa3d7b54704eda2a1c /src/main.cpp | |
| parent | Merge pull request #7020 (diff) | |
| download | discoin-e855b0152fa9d23fd49ccdd1b8e9427826b44a67.tar.xz discoin-e855b0152fa9d23fd49ccdd1b8e9427826b44a67.zip | |
Fix debug log message for block files
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 a1f326fb1..86bf95743 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2579,7 +2579,7 @@ bool FindBlockPos(CValidationState &state, CDiskBlockPos &pos, unsigned int nAdd if ((int)nFile != nLastBlockFile) { if (!fKnown) { - LogPrintf("Leaving block file %i: %s\n", nFile, vinfoBlockFile[nFile].ToString()); + LogPrintf("Leaving block file %i: %s\n", nLastBlockFile, vinfoBlockFile[nLastBlockFile].ToString()); } FlushBlockFile(!fKnown); nLastBlockFile = nFile; |