aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2017-05-01 14:53:00 -0700
committerPieter Wuille <[email protected]>2017-05-01 14:58:30 -0700
commitab1f1d32469180b3d011e9625d67c86a22b55903 (patch)
treed23deff16ce0e35068eafd452d8422b63f0ca4fe /src
parentMerge #10294: [Wallet] unset change position when there is no change (diff)
parentTrivial: remove extra character from comment (diff)
downloaddiscoin-ab1f1d32469180b3d011e9625d67c86a22b55903.tar.xz
discoin-ab1f1d32469180b3d011e9625d67c86a22b55903.zip
Merge #10309: Trivial: remove extra character from comment
3503716 Trivial: remove extra character from comment (CryptAxe) Tree-SHA512: 66ee474945b4f9fd098cee0d031c1860c0777d4b05c609c0eaba32234209356b630766de30235b49d22cc5ea7cf2bb93410dea4466396369a0cdc0b631512a33
Diffstat (limited to 'src')
-rw-r--r--src/merkleblock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/merkleblock.cpp b/src/merkleblock.cpp
index e3f3e4621..78d7cd600 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