aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2014-10-29 17:01:18 -0700
committerMatt Corallo <git@bluematt.me>2014-10-29 17:01:18 -0700
commit8375e2215f24ff4b92c634d2dc56898e9cda437b (patch)
tree1ad1698e8e38e3d49e4ad990eb57da8729f9bae3 /src/main.cpp
parent4ead850fe54ae0bdfb4b3724cbefb3425a16b74a (diff)
downloadbitcoin-8375e2215f24ff4b92c634d2dc56898e9cda437b.tar.xz
Fix -loadblock after shutdown during IBD
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 0506a7f598..238b0400ea 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3136,7 +3136,7 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp)
}
// process in case the block isn't known yet
- if (mapBlockIndex.count(hash) == 0) {
+ if (mapBlockIndex.count(hash) == 0 || (mapBlockIndex[hash]->nStatus & BLOCK_HAVE_DATA) == 0) {
CValidationState state;
if (ProcessBlock(state, NULL, &block, dbp))
nLoaded++;