fix segid in pindex, fix help. Remove more pointless prints.

This commit is contained in:
blackjok3r
2019-01-11 17:06:06 +08:00
parent b8ae55bd3a
commit 1e0e89523c
4 changed files with 37 additions and 15 deletions

View File

@@ -689,7 +689,11 @@ bool CBlockTreeDB::LoadBlockIndexGuts()
pindexNew->nTx = diskindex.nTx;
pindexNew->nSproutValue = diskindex.nSproutValue;
pindexNew->nSaplingValue = diskindex.nSaplingValue;
pindexNew->segid = diskindex.segid;
pindexNew->newcoins = diskindex.newcoins;
pindexNew->zfunds = diskindex.zfunds;
pindexNew->sproutfunds = diskindex.sproutfunds;
// Consistency checks
auto header = pindexNew->GetBlockHeader();
if (header.GetHash() != pindexNew->GetBlockHash())