mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-09 23:27:23 +02:00
doc: fix invalid arg name hints for bugprone validation
The extra leading `=` or missing trailing `=` prevented clang-tidy's `bugprone-argument-comment` check from validating the parameter name, as it only matches comments formatted strictly as `/*arg=*/` (see https://clang.llvm.org/extra/clang-tidy/checks/bugprone/argument-comment.html).
This commit is contained in:
@@ -221,7 +221,7 @@ BOOST_FIXTURE_TEST_CASE(rbf_conflicts_calculator, TestChain100Setup)
|
||||
dummy.clear();
|
||||
|
||||
// If we mine the parent_tx's, then the clusters split (102 clusters).
|
||||
pool.removeForBlock({parent_tx_1, parent_tx_2}, /* dummy */ 1);
|
||||
pool.removeForBlock({parent_tx_1, parent_tx_2}, /*nBlockHeight=*/ 1);
|
||||
|
||||
// Add some descendants now to each of the direct children (we can do this now that the clusters have split).
|
||||
for (const auto& child : direct_children) {
|
||||
|
||||
Reference in New Issue
Block a user