aboutsummaryrefslogtreecommitdiff
path: root/src/merkleblock.cpp
diff options
context:
space:
mode:
authorCryptAxe <cryptaxe@gmail.com>2017-05-01 14:18:30 -0700
committerCryptAxe <cryptaxe@gmail.com>2017-05-01 14:18:30 -0700
commit3503716f1e37a0cc3ab13c8f4e774061ff4ae2f8 (patch)
treed23deff16ce0e35068eafd452d8422b63f0ca4fe /src/merkleblock.cpp
parente2b99b13131b5d0fd6fae6d55892c2ebb327d438 (diff)
downloadbitcoin-3503716f1e37a0cc3ab13c8f4e774061ff4ae2f8.tar.xz
Trivial: remove extra character from comment
Diffstat (limited to 'src/merkleblock.cpp')
-rw-r--r--src/merkleblock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/merkleblock.cpp b/src/merkleblock.cpp
index e3f3e4621a..78d7cd6001 100644
--- a/src/merkleblock.cpp
+++ b/src/merkleblock.cpp
@@ -65,7 +65,7 @@ uint256 CPartialMerkleTree::CalcHash(int height, unsigned int pos, const std::ve
} else {
// calculate left hash
uint256 left = CalcHash(height-1, pos*2, vTxid), right;
- // calculate right hash if not beyond the end of the array - copy left hash otherwise1
+ // calculate right hash if not beyond the end of the array - copy left hash otherwise
if (pos*2+1 < CalcTreeWidth(height-1))
right = CalcHash(height-1, pos*2+1, vTxid);
else