diff options
| author | Chris Wheeler <[email protected]> | 2016-01-17 11:03:56 +0000 |
|---|---|---|
| committer | Chris Wheeler <[email protected]> | 2016-01-17 11:03:56 +0000 |
| commit | 9d263bd17c2bdd5ba9e31bd5fb110c332eb80691 (patch) | |
| tree | e52d90fb446cd0039d2f39b707fe549a89234371 /src/test/merkle_tests.cpp | |
| parent | Merge pull request #7081 (diff) | |
| download | discoin-9d263bd17c2bdd5ba9e31bd5fb110c332eb80691.tar.xz discoin-9d263bd17c2bdd5ba9e31bd5fb110c332eb80691.zip | |
Typo fixes in comments
Diffstat (limited to 'src/test/merkle_tests.cpp')
| -rw-r--r-- | src/test/merkle_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/merkle_tests.cpp b/src/test/merkle_tests.cpp index 1e31f2e67..b40ab848d 100644 --- a/src/test/merkle_tests.cpp +++ b/src/test/merkle_tests.cpp @@ -77,7 +77,7 @@ BOOST_AUTO_TEST_CASE(merkle_test) int duplicate2 = mutate >= 2 ? 1 << ctz(ntx1) : 0; // Likewise for the second mutation. if (duplicate2 >= ntx1) break; int ntx2 = ntx1 + duplicate2; - int duplicate3 = mutate >= 3 ? 1 << ctz(ntx2) : 0; // And for the the third mutation. + int duplicate3 = mutate >= 3 ? 1 << ctz(ntx2) : 0; // And for the third mutation. if (duplicate3 >= ntx2) break; int ntx3 = ntx2 + duplicate3; // Build a block with ntx different transactions. |