mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
Fixed testnet segfault issue causes by null pointer
This commit is contained in:
parent
8eaae329b0
commit
d87e4e6b55
61
src/main.cpp
61
src/main.cpp
@ -2881,39 +2881,42 @@ bool CheckBlock(const CBlock& block, CValidationState& state, bool fCheckPOW, bo
|
|||||||
{
|
{
|
||||||
LOCK2(cs_main, mempool.cs);
|
LOCK2(cs_main, mempool.cs);
|
||||||
|
|
||||||
if(chainActive.Tip()->GetBlockHash() == block.hashPrevBlock){
|
CBlockIndex *pindex = chainActive.Tip();
|
||||||
int64_t masternodePaymentAmount = GetMasternodePayment(chainActive.Tip()->nHeight+1, block.vtx[0].GetValueOut());
|
if(pindex != NULL){
|
||||||
bool fIsInitialDownload = IsInitialBlockDownload();
|
if(pindex->GetBlockHash() == block.hashPrevBlock){
|
||||||
|
int64_t masternodePaymentAmount = GetMasternodePayment(pindex->nHeight+1, block.vtx[0].GetValueOut());
|
||||||
|
bool fIsInitialDownload = IsInitialBlockDownload();
|
||||||
|
|
||||||
// If we don't already have its previous block, skip masternode payment step
|
// If we don't already have its previous block, skip masternode payment step
|
||||||
if (!fIsInitialDownload && chainActive.Tip() != NULL)
|
if (!fIsInitialDownload && pindex != NULL)
|
||||||
{
|
{
|
||||||
bool foundPaymentAmount = false;
|
bool foundPaymentAmount = false;
|
||||||
bool foundPayee = false;
|
bool foundPayee = false;
|
||||||
|
|
||||||
CScript payee;
|
CScript payee;
|
||||||
if(!masternodePayments.GetBlockPayee(chainActive.Tip()->nHeight+1, payee) || payee == CScript()){
|
if(!masternodePayments.GetBlockPayee(chainActive.Tip()->nHeight+1, payee) || payee == CScript()){
|
||||||
foundPayee = true; //doesn't require a specific payee
|
foundPayee = true; //doesn't require a specific payee
|
||||||
}
|
}
|
||||||
|
|
||||||
for (unsigned int i = 0; i < block.vtx[0].vout.size(); i++) {
|
for (unsigned int i = 0; i < block.vtx[0].vout.size(); i++) {
|
||||||
if(block.vtx[0].vout[i].nValue == masternodePaymentAmount )
|
if(block.vtx[0].vout[i].nValue == masternodePaymentAmount )
|
||||||
foundPaymentAmount = true;
|
foundPaymentAmount = true;
|
||||||
if(block.vtx[0].vout[i].scriptPubKey == payee )
|
if(block.vtx[0].vout[i].scriptPubKey == payee )
|
||||||
foundPayee = true;
|
foundPayee = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!foundPaymentAmount || !foundPayee) {
|
if(!foundPaymentAmount || !foundPayee) {
|
||||||
CTxDestination address1;
|
CTxDestination address1;
|
||||||
ExtractDestination(payee, address1);
|
ExtractDestination(payee, address1);
|
||||||
CBitcoinAddress address2(address1);
|
CBitcoinAddress address2(address1);
|
||||||
|
|
||||||
LogPrintf("CheckBlock() : Couldn't find masternode payment(%d|%d) or payee(%d|%s) nHeight %d. \n", foundPaymentAmount, masternodePaymentAmount, foundPayee, address2.ToString().c_str(), chainActive.Tip()->nHeight+1);
|
LogPrintf("CheckBlock() : Couldn't find masternode payment(%d|%d) or payee(%d|%s) nHeight %d. \n", foundPaymentAmount, masternodePaymentAmount, foundPayee, address2.ToString().c_str(), chainActive.Tip()->nHeight+1);
|
||||||
return state.DoS(100, error("CheckBlock() : Couldn't find masternode payment or payee"));
|
return state.DoS(100, error("CheckBlock() : Couldn't find masternode payment or payee"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
LogPrintf("CheckBlock() : Skipping masternode payment check - nHeight %d Hash %s\n", chainActive.Tip()->nHeight+1, block.GetHash().ToString().c_str());
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
LogPrintf("CheckBlock() : Skipping masternode payment check - nHeight %d Hash %s\n", chainActive.Tip()->nHeight+1, block.GetHash().ToString().c_str());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user