Skip to content

Commit

Permalink
fix: typo in src/test/merkle_tests.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
oliveredget committed Jan 1, 2025
1 parent 6144c75 commit e34cd76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/merkle_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ BOOST_AUTO_TEST_CASE(merkle_test)
// If no mutation was done (once for every ntx value), try up to 16 branches.
if (mutate == 0) {
for (int loop = 0; loop < std::min(ntx, 16); loop++) {
// If ntx <= 16, try all branches. Otherise, try 16 random ones.
// If ntx <= 16, try all branches. Otherwise, try 16 random ones.
int mtx = loop;
if (ntx > 16) {
mtx = InsecureRandRange(ntx);
Expand Down

0 comments on commit e34cd76

Please sign in to comment.