Change error to qualified error vs. no error at all

This commit is contained in:
miketout
2018-10-04 13:22:28 -07:00
parent 3764dea5d0
commit 8cb6777047

View File

@@ -4766,9 +4766,9 @@ bool AcceptBlock(int32_t *futureblockp,CBlock& block, CValidationState& state, C
} }
if ( pindex == 0 ) if ( pindex == 0 )
{ {
LogPrintf("WARNING: AcceptBlock null pindex, skipping until received again\n"); LogPrintf("AcceptBlock null pindex\n");
*futureblockp = true; *futureblockp = true;
return true; return false;
} }
//fprintf(stderr,"acceptblockheader passed\n"); //fprintf(stderr,"acceptblockheader passed\n");
// Try to process all requested blocks that we don't have, but only // Try to process all requested blocks that we don't have, but only