diff options
| author | Corinne Dashjr <[email protected]> | 2015-04-28 14:48:28 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2015-05-01 11:21:27 +0000 |
| commit | 7e6d23b1719191f83af7d3e7b134a90889b5c1ef (patch) | |
| tree | 04c8888faab17cbe87ca776ab1076b78da0e875b /src/merkleblock.cpp | |
| parent | Merge pull request #5971 (diff) | |
| download | discoin-7e6d23b1719191f83af7d3e7b134a90889b5c1ef.tar.xz discoin-7e6d23b1719191f83af7d3e7b134a90889b5c1ef.zip | |
Bugfix: Grammar fixes
Diffstat (limited to 'src/merkleblock.cpp')
| -rw-r--r-- | src/merkleblock.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/merkleblock.cpp b/src/merkleblock.cpp index dc87d0377..4d90fd8cd 100644 --- a/src/merkleblock.cpp +++ b/src/merkleblock.cpp @@ -119,8 +119,8 @@ uint256 CPartialMerkleTree::TraverseAndExtract(int height, unsigned int pos, uns if (pos*2+1 < CalcTreeWidth(height-1)) { right = TraverseAndExtract(height-1, pos*2+1, nBitsUsed, nHashUsed, vMatch); if (right == left) { - // If the left and right branch should never be identical as the transaction - // hashes covered by them must be unique. + // The left and right branches should never be identical, as the transaction + // hashes covered by them must each be unique. fBad = true; } } else { |