Auto merge of #4650 - teor2345:patch-1, r=daira

Fix a comment typo in pow.cpp

*Documentation and testing not required: comment-only change.*
This commit is contained in:
Homu 2020-08-06 10:32:11 +00:00
commit d6f527a88f
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ arith_uint256 GetBlockProof(const CBlockIndex& block)
// 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 bnTarget+1, it is equal to ((2**256 - bnTarget - 1) / (bnTarget+1)) + 1,
// or ~bnTarget / (nTarget+1) + 1.
// or ~bnTarget / (bnTarget+1) + 1.
return (~bnTarget / (bnTarget + 1)) + 1;
}