Skip to content

Commit 5a9da37

Browse files
committed
Merge #11469: fix typo in comment of chain.cpp
f902e40 fix typo in comment of chain.cpp (Johannes Kanig) Pull request description: Tree-SHA512: 1af049bd75f244febc2c249f7b743b481ed6ce935f1f5265881f57064d69e0f055b9334dae765132348125a5e688f99b07a255de7deacf37ac57d1e6966b5e4b
2 parents e022463 + f902e40 commit 5a9da37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ arith_uint256 GetBlockProof(const CBlockIndex& block)
128128
// We need to compute 2**256 / (bnTarget+1), but we can't represent 2**256
129129
// as it's too large for an arith_uint256. However, as 2**256 is at least as large
130130
// as bnTarget+1, it is equal to ((2**256 - bnTarget - 1) / (bnTarget+1)) + 1,
131-
// or ~bnTarget / (nTarget+1) + 1.
131+
// or ~bnTarget / (bnTarget+1) + 1.
132132
return (~bnTarget / (bnTarget + 1)) + 1;
133133
}
134134

0 commit comments

Comments
 (0)