enable cache files / remove old vote check
This commit is contained in:
parent
c89f75d537
commit
c407ae35dd
110
src/init.cpp
110
src/init.cpp
@ -169,9 +169,9 @@ void PrepareShutdown()
|
|||||||
GenerateBitcoins(false, NULL, 0);
|
GenerateBitcoins(false, NULL, 0);
|
||||||
#endif
|
#endif
|
||||||
StopNode();
|
StopNode();
|
||||||
//DumpMasternodes();
|
DumpMasternodes();
|
||||||
//DumpBudgets();
|
DumpBudgets();
|
||||||
//DumpMasternodePayments();
|
DumpMasternodePayments();
|
||||||
UnregisterNodeSignals(GetNodeSignals());
|
UnregisterNodeSignals(GetNodeSignals());
|
||||||
|
|
||||||
if (fFeeEstimatesInitialized)
|
if (fFeeEstimatesInitialized)
|
||||||
@ -1409,67 +1409,57 @@ bool AppInit2(boost::thread_group& threadGroup)
|
|||||||
|
|
||||||
// ********************************************************* Step 10: setup DarkSend
|
// ********************************************************* Step 10: setup DarkSend
|
||||||
|
|
||||||
|
uiInterface.InitMessage(_("Loading masternode cache..."));
|
||||||
|
|
||||||
|
CMasternodeDB mndb;
|
||||||
|
CMasternodeDB::ReadResult readResult = mndb.Read(mnodeman);
|
||||||
|
if (readResult == CMasternodeDB::FileError)
|
||||||
|
LogPrintf("Missing masternode cache file - mncache.dat, will try to recreate\n");
|
||||||
|
else if (readResult != CMasternodeDB::Ok)
|
||||||
|
{
|
||||||
|
LogPrintf("Error reading mncache.dat: ");
|
||||||
|
if(readResult == CMasternodeDB::IncorrectFormat)
|
||||||
|
LogPrintf("magic is ok but data has invalid format, will try to recreate\n");
|
||||||
|
else
|
||||||
|
LogPrintf("file format is unknown or invalid, please fix it manually\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
uiInterface.InitMessage(_("Loading budget cache..."));
|
||||||
|
|
||||||
|
CBudgetDB budgetdb;
|
||||||
|
CBudgetDB::ReadResult readResult2 = budgetdb.Read(budget);
|
||||||
|
|
||||||
|
if (readResult2 == CBudgetDB::FileError)
|
||||||
|
LogPrintf("Missing budget cache - budget.dat, will try to recreate\n");
|
||||||
|
else if (readResult2 != CBudgetDB::Ok)
|
||||||
|
{
|
||||||
|
LogPrintf("Error reading budget.dat: ");
|
||||||
|
if(readResult2 == CBudgetDB::IncorrectFormat)
|
||||||
|
LogPrintf("magic is ok but data has invalid format, will try to recreate\n");
|
||||||
|
else
|
||||||
|
LogPrintf("file format is unknown or invalid, please fix it manually\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
//flag our cached items so we send them to our peers
|
||||||
|
budget.ResetSync();
|
||||||
|
budget.ClearSeen();
|
||||||
|
|
||||||
|
|
||||||
/*
|
uiInterface.InitMessage(_("Loading masternode payment cache..."));
|
||||||
|
|
||||||
We sync all of this information on boot anyway, as it's kept on the network so there's really no point.
|
CMasternodePaymentDB mnpayments;
|
||||||
Also, it seems it might be causing some edge cases where clients can get stuck. I think it's better to just
|
CMasternodePaymentDB::ReadResult readResult3 = mnpayments.Read(masternodePayments);
|
||||||
sync from the network instead.
|
|
||||||
uiInterface.InitMessage(_("Loading masternode cache..."));
|
|
||||||
|
|
||||||
CMasternodeDB mndb;
|
if (readResult3 == CMasternodePaymentDB::FileError)
|
||||||
CMasternodeDB::ReadResult readResult = mndb.Read(mnodeman);
|
LogPrintf("Missing masternode payment cache - mnpayments.dat, will try to recreate\n");
|
||||||
if (readResult == CMasternodeDB::FileError)
|
else if (readResult3 != CMasternodePaymentDB::Ok)
|
||||||
LogPrintf("Missing masternode cache file - mncache.dat, will try to recreate\n");
|
{
|
||||||
else if (readResult != CMasternodeDB::Ok)
|
LogPrintf("Error reading mnpayments.dat: ");
|
||||||
{
|
if(readResult3 == CMasternodePaymentDB::IncorrectFormat)
|
||||||
LogPrintf("Error reading mncache.dat: ");
|
LogPrintf("magic is ok but data has invalid format, will try to recreate\n");
|
||||||
if(readResult == CMasternodeDB::IncorrectFormat)
|
else
|
||||||
LogPrintf("magic is ok but data has invalid format, will try to recreate\n");
|
LogPrintf("file format is unknown or invalid, please fix it manually\n");
|
||||||
else
|
}
|
||||||
LogPrintf("file format is unknown or invalid, please fix it manually\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ---------
|
|
||||||
// uiInterface.InitMessage(_("Loading budget cache..."));
|
|
||||||
|
|
||||||
// CBudgetDB budgetdb;
|
|
||||||
// CBudgetDB::ReadResult readResult2 = budgetdb.Read(budget);
|
|
||||||
|
|
||||||
// if (readResult2 == CBudgetDB::FileError)
|
|
||||||
// LogPrintf("Missing budget cache - budget.dat, will try to recreate\n");
|
|
||||||
// else if (readResult2 != CBudgetDB::Ok)
|
|
||||||
// {
|
|
||||||
// LogPrintf("Error reading budget.dat: ");
|
|
||||||
// if(readResult2 == CBudgetDB::IncorrectFormat)
|
|
||||||
// LogPrintf("magic is ok but data has invalid format, will try to recreate\n");
|
|
||||||
// else
|
|
||||||
// LogPrintf("file format is unknown or invalid, please fix it manually\n");
|
|
||||||
// }
|
|
||||||
|
|
||||||
// //flag our cached items so we send them to our peers
|
|
||||||
// budget.ResetSync();
|
|
||||||
// budget.ClearSeen();
|
|
||||||
|
|
||||||
|
|
||||||
// uiInterface.InitMessage(_("Loading masternode payment cache..."));
|
|
||||||
|
|
||||||
// CMasternodePaymentDB mnpayments;
|
|
||||||
// CMasternodePaymentDB::ReadResult readResult3 = mnpayments.Read(masternodePayments);
|
|
||||||
|
|
||||||
// if (readResult3 == CMasternodePaymentDB::FileError)
|
|
||||||
// LogPrintf("Missing masternode payment cache - mnpayments.dat, will try to recreate\n");
|
|
||||||
// else if (readResult3 != CMasternodePaymentDB::Ok)
|
|
||||||
// {
|
|
||||||
// LogPrintf("Error reading mnpayments.dat: ");
|
|
||||||
// if(readResult3 == CMasternodePaymentDB::IncorrectFormat)
|
|
||||||
// LogPrintf("magic is ok but data has invalid format, will try to recreate\n");
|
|
||||||
// else
|
|
||||||
// LogPrintf("file format is unknown or invalid, please fix it manually\n");
|
|
||||||
// }
|
|
||||||
*/
|
|
||||||
|
|
||||||
fMasterNode = GetBoolArg("-masternode", false);
|
fMasterNode = GetBoolArg("-masternode", false);
|
||||||
|
|
||||||
|
@ -1379,16 +1379,6 @@ bool CBudgetProposal::AddOrUpdateVote(CBudgetVote& vote, std::string& strError)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//if we're synced, the vote should have been recent
|
|
||||||
if(masternodeSync.IsSynced()) {
|
|
||||||
//up to an hour ago
|
|
||||||
if(vote.nTime < GetTime() - (60*60)){
|
|
||||||
strError = strprintf("new vote is too old - %s - nTime %lli - Min Time %lli\n", vote.GetHash().ToString(), vote.nTime, GetTime() - (60*60));
|
|
||||||
LogPrint("mnbudget", "CBudgetProposal::AddOrUpdateVote - %s\n", strError);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if(vote.nTime > GetTime() + (60*60)){
|
if(vote.nTime > GetTime() + (60*60)){
|
||||||
strError = strprintf("new vote is too far ahead of current time - %s - nTime %lli - Max Time %lli\n", vote.GetHash().ToString(), vote.nTime, GetTime() + (60*60));
|
strError = strprintf("new vote is too far ahead of current time - %s - nTime %lli - Max Time %lli\n", vote.GetHash().ToString(), vote.nTime, GetTime() + (60*60));
|
||||||
LogPrint("mnbudget", "CBudgetProposal::AddOrUpdateVote - %s\n", strError);
|
LogPrint("mnbudget", "CBudgetProposal::AddOrUpdateVote - %s\n", strError);
|
||||||
|
Loading…
Reference in New Issue
Block a user