aboutsummaryrefslogtreecommitdiff
path: root/src/test/merkle_tests.cpp
diff options
context:
space:
mode:
authorChris Wheeler <chris@haydenwheeler.com>2016-01-17 11:03:56 +0000
committerChris Wheeler <chris@haydenwheeler.com>2016-01-17 11:03:56 +0000
commit9d263bd17c2bdd5ba9e31bd5fb110c332eb80691 (patch)
treee52d90fb446cd0039d2f39b707fe549a89234371 /src/test/merkle_tests.cpp
parentdd1304ec216c7d4bdb302195e184b15503819f67 (diff)
downloadbitcoin-9d263bd17c2bdd5ba9e31bd5fb110c332eb80691.tar.xz
Typo fixes in comments
Diffstat (limited to 'src/test/merkle_tests.cpp')
-rw-r--r--src/test/merkle_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/merkle_tests.cpp b/src/test/merkle_tests.cpp
index 1e31f2e679..b40ab848dc 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.