diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-09-19 16:54:13 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-09-19 16:54:17 +0200 |
| commit | 8bae52a9a0d1d6023969ada59c9e083e654fd8ab (patch) | |
| tree | 478448d3bbe5951b06101dd6aa3beaaff2cc4436 /src/main.cpp | |
| parent | Merge #8750: [qa] Refactor RPCTestHandler to prevent TimeoutExpired (diff) | |
| parent | UndoReadFromDisk works on undo files (rev), not on block files. (diff) | |
| download | discoin-8bae52a9a0d1d6023969ada59c9e083e654fd8ab.tar.xz discoin-8bae52a9a0d1d6023969ada59c9e083e654fd8ab.zip | |
Merge #8737: Trivial: UndoReadFromDisk works on undo files (rev), not on block files.
b4fb512 UndoReadFromDisk works on undo files (rev), not on block files. (Pavel JanÃk)
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 593897f51..10cb54e94 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2062,7 +2062,7 @@ bool UndoReadFromDisk(CBlockUndo& blockundo, const CDiskBlockPos& pos, const uin // Open history file to read CAutoFile filein(OpenUndoFile(pos, true), SER_DISK, CLIENT_VERSION); if (filein.IsNull()) - return error("%s: OpenBlockFile failed", __func__); + return error("%s: OpenUndoFile failed", __func__); // Read block uint256 hashChecksum; |