aboutsummaryrefslogtreecommitdiff
path: root/src/pow.cpp
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2015-01-08 11:44:25 +0100
committerCory Fields <[email protected]>2015-01-31 17:38:28 -0500
commit5262fde0ecd19f1febbfcd488f2be41c5dffd047 (patch)
tree413401ca7111906838b0f5f5d0c0604bcce52d19 /src/pow.cpp
parentFix typo (diff)
downloaddiscoin-5262fde0ecd19f1febbfcd488f2be41c5dffd047.tar.xz
discoin-5262fde0ecd19f1febbfcd488f2be41c5dffd047.zip
Remove whitespaces before double colon in errors and logs
Diffstat (limited to 'src/pow.cpp')
-rw-r--r--src/pow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pow.cpp b/src/pow.cpp
index 90bbff0a3..e49f0d104 100644
--- a/src/pow.cpp
+++ b/src/pow.cpp
@@ -89,11 +89,11 @@ bool CheckProofOfWork(uint256 hash, unsigned int nBits)
// Check range
if (fNegative || bnTarget == 0 || fOverflow || bnTarget > Params().ProofOfWorkLimit())
- return error("CheckProofOfWork() : nBits below minimum work");
+ return error("CheckProofOfWork(): nBits below minimum work");
// Check proof of work matches claimed amount
if (UintToArith256(hash) > bnTarget)
- return error("CheckProofOfWork() : hash doesn't match nBits");
+ return error("CheckProofOfWork(): hash doesn't match nBits");
return true;
}