aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpaveljanik <Pavel@Janik.cz>2015-06-24 11:39:26 +0200
committerMarcoFalke <falke.marco@gmail.com>2015-12-02 15:18:23 +0100
commit5e151a842cebdc3960cd9cff0634e5663459e86f (patch)
treede0ac3153df61b7f41dab88a8f0686e584b78ae8 /src
parentfad0088e75d1df1a2448368ee5570107ebb3ad3f (diff)
downloadbitcoin-5e151a842cebdc3960cd9cff0634e5663459e86f.tar.xz
PartitionCheck: remove useless spaces
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index fe6bc52957..cb3f8f39f8 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1945,8 +1945,8 @@ void PartitionCheck(bool (*initialDownloadCheck)(), CCriticalSection& cs, const
// How likely is it to find that many by chance?
double p = boost::math::pdf(poisson, nBlocks);
- LogPrint("partitioncheck", "%s : Found %d blocks in the last %d hours\n", __func__, nBlocks, SPAN_HOURS);
- LogPrint("partitioncheck", "%s : likelihood: %g\n", __func__, p);
+ LogPrint("partitioncheck", "%s: Found %d blocks in the last %d hours\n", __func__, nBlocks, SPAN_HOURS);
+ LogPrint("partitioncheck", "%s: likelihood: %g\n", __func__, p);
// Aim for one false-positive about every fifty years of normal running:
const int FIFTY_YEARS = 50*365*24*60*60;
@@ -3047,7 +3047,7 @@ bool ContextualCheckBlockHeader(const CBlockHeader& block, CValidationState& sta
// Reject block.nVersion=2 blocks when 95% (75% on testnet) of the network has upgraded:
if (block.nVersion < 3 && IsSuperMajority(3, pindexPrev, consensusParams.nMajorityRejectBlockOutdated, consensusParams))
- return state.Invalid(error("%s : rejected nVersion=2 block", __func__),
+ return state.Invalid(error("%s: rejected nVersion=2 block", __func__),
REJECT_OBSOLETE, "bad-version");
// Reject block.nVersion=3 blocks when 95% (75% on testnet) of the network has upgraded: