We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a93270 commit f902e40Copy full SHA for f902e40
src/chain.cpp
@@ -128,7 +128,7 @@ arith_uint256 GetBlockProof(const CBlockIndex& block)
128
// We need to compute 2**256 / (bnTarget+1), but we can't represent 2**256
129
// as it's too large for an arith_uint256. However, as 2**256 is at least as large
130
// as bnTarget+1, it is equal to ((2**256 - bnTarget - 1) / (bnTarget+1)) + 1,
131
- // or ~bnTarget / (nTarget+1) + 1.
+ // or ~bnTarget / (bnTarget+1) + 1.
132
return (~bnTarget / (bnTarget + 1)) + 1;
133
}
134
0 commit comments