aboutsummaryrefslogtreecommitdiff
path: root/src/chain.cpp
diff options
context:
space:
mode:
authorDimitris Tsapakidis <dimitris@tsapakidis.com>2017-06-20 01:57:31 +0300
committerDimitris Tsapakidis <dimitris@tsapakidis.com>2017-06-22 19:18:10 +0300
commit0a5a6b90bc75a8d75fdff71c9b08abe9b0b96b0a (patch)
treefed3c77d7bdbe735ca127c017e85db94506f3204 /src/chain.cpp
parentc38f540298f0e188df5ed68fd56c623b9ac8331b (diff)
downloadbitcoin-0a5a6b90bc75a8d75fdff71c9b08abe9b0b96b0a.tar.xz
Fixed multiple typos
A few "a->an" and "an->a". "Shows, if the supplied default SOCKS5 proxy" -> "Shows if the supplied default SOCKS5 proxy". Change made on 3 occurrences. "without fully understanding the ramification of a command" -> "without fully understanding the ramifications of a command". Removed duplicate words such as "the the".
Diffstat (limited to 'src/chain.cpp')
-rw-r--r--src/chain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chain.cpp b/src/chain.cpp
index a5b369c4fc..8d4c4e7dea 100644
--- a/src/chain.cpp
+++ b/src/chain.cpp
@@ -126,7 +126,7 @@ arith_uint256 GetBlockProof(const CBlockIndex& block)
if (fNegative || fOverflow || bnTarget == 0)
return 0;
// We need to compute 2**256 / (bnTarget+1), but we can't represent 2**256
- // as it's too large for a arith_uint256. However, as 2**256 is at least as large
+ // as it's too large for an arith_uint256. However, as 2**256 is at least as large
// as bnTarget+1, it is equal to ((2**256 - bnTarget - 1) / (bnTarget+1)) + 1,
// or ~bnTarget / (nTarget+1) + 1.
return (~bnTarget / (bnTarget + 1)) + 1;