Correcting syntax errors on debug

saving progress on verus-cli windows InstallBuilder configuration xml
This commit is contained in:
Asher Dawes
2018-07-07 23:04:07 -07:00
parent 2d98bcf949
commit b1a8ac9db0
2 changed files with 197 additions and 2 deletions

View File

@@ -491,10 +491,10 @@ bool CBlockTreeDB::LoadBlockIndexGuts()
// Load mapBlockIndex
LogPrintf("Past the pcursor->Seek\n");
while (pcursor->Valid()) {
LogPrintf("Before interruption_point\n")
LogPrintf("Before interruption_point\n");
boost::this_thread::interruption_point();
try {
LogPrintf("Before pcursor->key\n")
LogPrintf("Before pcursor->key\n");
leveldb::Slice slKey = pcursor->key();
CDataStream ssKey(slKey.data(), slKey.data()+slKey.size(), SER_DISK, CLIENT_VERSION);
char chType;