Merge bitcoin/bitcoin#34183: doc: fix double-word typos in comments

08ed802bab doc: fix double-word typos in comments (bensig)

Pull request description:

  Spotted a few duplicated words while reading through the code:

  1. "the the" in mempool_stress.cpp
  2. "to to" in txgraph.cpp
  3. "for for" in cluster_linearize.h
  4. "that that" in txrequest.h
  5. "in in" in test/fuzz/txgraph.cpp

ACKs for top commit:
  l0rinc:
    ACK 08ed802bab
  maflcko:
    lgtm ACK 08ed802bab

Tree-SHA512: e4eeb9a95489b4c46fbb7a0dbeb549d70a2b087ab6400cc6ba89cbfc015b40e580fab8a68913499af7c83a988e66642dcc7a222b70d2eda5c57f4a02b5a556ae
This commit is contained in:
merge-script
2025-12-31 11:10:32 +00:00
5 changed files with 5 additions and 5 deletions

View File

@@ -140,7 +140,7 @@ static void ComplexMemPool(benchmark::Bench& bench)
// Add all transactions to the mempool.
// Also store the first 10 transactions from each cluster as the
// transactions we'll "mine" in the the benchmark.
// transactions we'll "mine" in the benchmark.
int tx_count = 0;
for (auto& tx : transactions) {
if (tx_count < 10) {

View File

@@ -38,7 +38,7 @@ class DepGraph
/** All descendants of the transaction (including itself). */
SetType descendants;
/** Equality operator (primarily for for testing purposes). */
/** Equality operator (primarily for testing purposes). */
friend bool operator==(const Entry&, const Entry&) noexcept = default;
/** Construct an empty entry. */

View File

@@ -710,7 +710,7 @@ FUZZ_TARGET(txgraph)
std::shuffle(refs.begin(), refs.end(), rng);
// Invoke the real function.
auto result = real->CountDistinctClusters(refs, level_select);
// Build a set with representatives of the clusters the Refs occur in in the
// Build a set with representatives of the clusters the Refs occur in the
// simulated graph. For each, remember the lowest-index transaction SimPos in the
// cluster.
SimTxGraph::SetType sim_reps;

View File

@@ -1834,7 +1834,7 @@ void TxGraphImpl::GroupClusters(int level) noexcept
// Sort an_deps by applying the same order to the involved child cluster.
std::sort(an_deps.begin(), an_deps.end(), [&](auto& a, auto& b) noexcept { return a.second < b.second; });
// Run the union-find algorithm to to find partitions of the input Clusters which need to be
// Run the union-find algorithm to find partitions of the input Clusters which need to be
// grouped together. See https://en.wikipedia.org/wiki/Disjoint-set_data_structure.
{
/** Each PartitionData entry contains information about a single input Cluster. */

View File

@@ -25,7 +25,7 @@
* - Which peer announced it (through their NodeId)
* - The txid or wtxid of the transaction (collectively called "txhash" in what follows)
* - Whether it was a tx or wtx announcement (see BIP339).
* - What the earliest permitted time is that that transaction can be requested from that peer (called "reqtime").
* - What the earliest permitted time is that the transaction can be requested from that peer (called "reqtime").
* - Whether it's from a "preferred" peer or not. Which announcements get this flag is determined by the caller, but
* this is designed for outbound peers, or other peers that we have a higher level of trust in. Even when the
* peers' preferredness changes, the preferred flag of existing announcements from that peer won't change.