347 | @@ -346,6 +348,8 @@ void ThreadImport(std::vector<boost::filesystem::path> vImportFiles)
348 | CImportingNow imp;
349 | LogPrintf("Importing %s...\n", path.string());
350 | LoadExternalBlockFile(file);
351 | + } else {
352 | + LogPrintf("Warning: Could not open bootstrap file %s\n", path.string());
Perhaps confusing to call this bootstrap file?
"Could not open blocks file %s\n" ?
It's technically the same format as bootstrap.dat, but as it can be used to import arbitrary blocks, just calling it bootstrap too is probably a bit confusing.
Ok, will change it to that