aboutsummaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-03-15 10:47:25 +0000
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-03-15 13:34:05 +0000
commit636c9862cfc8b3facc84eb62b51e18877f2022a9 (patch)
tree5617bb4a4beb7ab366640c5649ef89fea2fe2d14 /src/script
parent3d255dfb67aede71ed39aaa54f4bcad550910cb7 (diff)
ci: Bump `TIDY_LLVM_V`
This change switches to the latest IWYU 0.22, which is compatible with Clang 18.
Diffstat (limited to 'src/script')
-rw-r--r--src/script/signingprovider.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/script/signingprovider.cpp b/src/script/signingprovider.cpp
index 0031f94af1..baabd4d5b5 100644
--- a/src/script/signingprovider.cpp
+++ b/src/script/signingprovider.cpp
@@ -370,8 +370,6 @@ TaprootBuilder& TaprootBuilder::Add(int depth, Span<const unsigned char> script,
/* Construct NodeInfo object with leaf hash and (if track is true) also leaf information. */
NodeInfo node;
node.hash = ComputeTapleafHash(leaf_version, script);
- // due to bug in clang-tidy-17:
- // NOLINTNEXTLINE(modernize-use-emplace)
if (track) node.leaves.emplace_back(LeafInfo{std::vector<unsigned char>(script.begin(), script.end()), leaf_version, {}});
/* Insert into the branch. */
Insert(std::move(node), depth);