Skip to content

Commit ab1f1d3

Browse files
committed
Merge #10309: Trivial: remove extra character from comment
3503716 Trivial: remove extra character from comment (CryptAxe) Tree-SHA512: 66ee474945b4f9fd098cee0d031c1860c0777d4b05c609c0eaba32234209356b630766de30235b49d22cc5ea7cf2bb93410dea4466396369a0cdc0b631512a33
2 parents e2b99b1 + 3503716 commit ab1f1d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/merkleblock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ uint256 CPartialMerkleTree::CalcHash(int height, unsigned int pos, const std::ve
6565
} else {
6666
// calculate left hash
6767
uint256 left = CalcHash(height-1, pos*2, vTxid), right;
68-
// calculate right hash if not beyond the end of the array - copy left hash otherwise1
68+
// calculate right hash if not beyond the end of the array - copy left hash otherwise
6969
if (pos*2+1 < CalcTreeWidth(height-1))
7070
right = CalcHash(height-1, pos*2+1, vTxid);
7171
else

0 commit comments

Comments
 (0)