Skip to content

Commit 3503716

Browse files
committed
Trivial: remove extra character from comment
1 parent e2b99b1 commit 3503716

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)