diff options
| author | CryptAxe <[email protected]> | 2017-05-01 14:18:30 -0700 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2017-06-05 22:58:53 +0000 |
| commit | 12adedff0bf813f2a2e790f422e41cc8d84cfc99 (patch) | |
| tree | 0b12c24ddd842535db8a0a7e51a48cbc009cd569 /src/merkleblock.cpp | |
| parent | Fixed typo in documentation for merkleblock.h (diff) | |
| download | discoin-12adedff0bf813f2a2e790f422e41cc8d84cfc99.tar.xz discoin-12adedff0bf813f2a2e790f422e41cc8d84cfc99.zip | |
Trivial: remove extra character from comment
Github-Pull: #10309
Rebased-From: 3503716f1e37a0cc3ab13c8f4e774061ff4ae2f8
Diffstat (limited to 'src/merkleblock.cpp')
| -rw-r--r-- | src/merkleblock.cpp | 2 |
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 |