@@ -1945,8 +1945,8 @@ void PartitionCheck(bool (*initialDownloadCheck)(), CCriticalSection& cs, const
1945
1945
// How likely is it to find that many by chance?
1946
1946
double p = boost::math::pdf (poisson, nBlocks);
1947
1947
1948
- LogPrint (" partitioncheck" , " %s : Found %d blocks in the last %d hours\n " , __func__, nBlocks, SPAN_HOURS);
1949
- LogPrint (" partitioncheck" , " %s : likelihood: %g\n " , __func__, p);
1948
+ LogPrint (" partitioncheck" , " %s: Found %d blocks in the last %d hours\n " , __func__, nBlocks, SPAN_HOURS);
1949
+ LogPrint (" partitioncheck" , " %s: likelihood: %g\n " , __func__, p);
1950
1950
1951
1951
// Aim for one false-positive about every fifty years of normal running:
1952
1952
const int FIFTY_YEARS = 50 *365 *24 *60 *60 ;
@@ -3047,7 +3047,7 @@ bool ContextualCheckBlockHeader(const CBlockHeader& block, CValidationState& sta
3047
3047
3048
3048
// Reject block.nVersion=2 blocks when 95% (75% on testnet) of the network has upgraded:
3049
3049
if (block.nVersion < 3 && IsSuperMajority (3 , pindexPrev, consensusParams.nMajorityRejectBlockOutdated , consensusParams))
3050
- return state.Invalid (error (" %s : rejected nVersion=2 block" , __func__),
3050
+ return state.Invalid (error (" %s: rejected nVersion=2 block" , __func__),
3051
3051
REJECT_OBSOLETE, " bad-version" );
3052
3052
3053
3053
// Reject block.nVersion=3 blocks when 95% (75% on testnet) of the network has upgraded:
0 commit comments