We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bb4faee + 243b80d commit 39ddaebCopy full SHA for 39ddaeb
1 file changed
src/leveldbwrapper.cpp
@@ -58,7 +58,8 @@ CLevelDBWrapper::CLevelDBWrapper(const boost::filesystem::path& path, size_t nCa
58
} else {
59
if (fWipe) {
60
LogPrintf("Wiping LevelDB in %s\n", path.string());
61
- leveldb::DestroyDB(path.string(), options);
+ leveldb::Status result = leveldb::DestroyDB(path.string(), options);
62
+ HandleError(result);
63
}
64
TryCreateDirectory(path);
65
LogPrintf("Opening LevelDB in %s\n", path.string());
0 commit comments