diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-01-18 10:41:27 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-01-18 10:41:32 +0100 |
| commit | a8bd616fea62e0b15c6041d687230f5d9dd47bf9 (patch) | |
| tree | 0e86fd376821825e0d50e56bcc7c6a0f38680a24 /src/test | |
| parent | Merge pull request #7363 (diff) | |
| parent | Typo fixes in comments (diff) | |
| download | discoin-a8bd616fea62e0b15c6041d687230f5d9dd47bf9.tar.xz discoin-a8bd616fea62e0b15c6041d687230f5d9dd47bf9.zip | |
Merge pull request #7329
9d263bd Typo fixes in comments (Chris Wheeler)
Diffstat (limited to 'src/test')
| -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. |