diff options
| author | Pavel JanÃk <[email protected]> | 2015-01-08 11:44:25 +0100 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-01-31 17:38:28 -0500 |
| commit | 5262fde0ecd19f1febbfcd488f2be41c5dffd047 (patch) | |
| tree | 413401ca7111906838b0f5f5d0c0604bcce52d19 /src/pow.cpp | |
| parent | Fix typo (diff) | |
| download | discoin-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.cpp | 4 |
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; } |