]> Git Repo - VerusCoin.git/commitdiff
Change error to qualified error vs. no error at all
authormiketout <[email protected]>
Thu, 4 Oct 2018 20:22:28 +0000 (13:22 -0700)
committermiketout <[email protected]>
Thu, 4 Oct 2018 20:22:28 +0000 (13:22 -0700)
src/main.cpp

index a9cc4dd73eb66c355b9986eaa757b2992feef57e..d62473f827bd994ac43b35d656ea217526205e88 100644 (file)
@@ -4766,9 +4766,9 @@ bool AcceptBlock(int32_t *futureblockp,CBlock& block, CValidationState& state, C
     }
     if ( pindex == 0 )
     {
-        LogPrintf("WARNING: AcceptBlock null pindex, skipping until received again\n");
+        LogPrintf("AcceptBlock null pindex\n");
         *futureblockp = true;
-        return true;
+        return false;
     }
     //fprintf(stderr,"acceptblockheader passed\n");
     // Try to process all requested blocks that we don't have, but only
This page took 0.034735 seconds and 4 git commands to generate.