diff options
author | fanquake <fanquake@gmail.com> | 2022-10-03 09:37:27 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-12-05 15:51:46 +0000 |
commit | 203886c443c4ad76f8a1dba740a286e383e55206 (patch) | |
tree | 7e108768d63c83592db46026f521143d88e59440 /src/psbt.h | |
parent | 38cbf43dee9203364d429dc2179772eca80d8965 (diff) |
Fixup clang-tidy named argument comments
Fix comments so they are checked/consistent.
Fix incorrect arguments.
Diffstat (limited to 'src/psbt.h')
-rw-r--r-- | src/psbt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/psbt.h b/src/psbt.h index 37bf142366..b636f0348b 100644 --- a/src/psbt.h +++ b/src/psbt.h @@ -875,7 +875,7 @@ struct PSBTOutput throw std::ios_base::failure("Output Taproot tree has a leaf with an invalid leaf version"); } m_tap_tree.push_back(std::make_tuple(depth, leaf_ver, script)); - builder.Add((int)depth, script, (int)leaf_ver, true /* track */); + builder.Add((int)depth, script, (int)leaf_ver, /*track=*/true); } if (!builder.IsComplete()) { throw std::ios_base::failure("Output Taproot tree is malformed"); |