Debugging Windows komodod crash on legacy hardware that does not support AES or AVX instructions.

Removing deploy steps in Travis-CI to use as a sanity check on Github
This commit is contained in:
Asher Dawes
2018-07-07 20:29:12 -07:00
parent 2194e2af5e
commit 40547f3e6f
2 changed files with 7 additions and 20 deletions

View File

@@ -489,6 +489,7 @@ bool CBlockTreeDB::LoadBlockIndexGuts()
pcursor->Seek(ssKeySet.str());
// Load mapBlockIndex
LogPrint("Debug", "Past the pcursor->Seek\n");
while (pcursor->Valid()) {
boost::this_thread::interruption_point();
try {
@@ -524,7 +525,9 @@ bool CBlockTreeDB::LoadBlockIndexGuts()
pindexNew->nSproutValue = diskindex.nSproutValue;
// Consistency checks
LogPrint("Debug", "Before the auto header\n");
auto header = pindexNew->GetBlockHeader();
LogPrint("Debug", "Past the auto header\n");
if (header.GetHash() != pindexNew->GetBlockHash())
return error("LoadBlockIndex(): block header inconsistency detected: on-disk = %s, in-memory = %s",
diskindex.ToString(), pindexNew->ToString());