Disable chain power in initial download

This commit is contained in:
jl777
2018-11-24 04:51:58 -11:00
parent 21ed3a6771
commit a3d12679fc

View File

@@ -2252,7 +2252,7 @@ bool IsInitialBlockDownload()
fprintf(stderr,"nullptr in IsInitialDownload\n");
return true;
}
if (ptr->chainPower < CChainPower(ptr, bigZero, minWork))
if (0 && ptr->chainPower < CChainPower(ptr, bigZero, minWork))
{
fprintf(stderr,"chainpower insufficient in IsInitialDownload\n");
return true;