Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/llmq/signing_shares.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1668,7 +1668,7 @@ void CSigSharesManager::DispatchPendingSigns()
for (auto& work : signs) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix clang-format diff reported by CI around this loop

CI reports a clang-format difference at this location. Please run the project’s configured clang-format (or clang-format-diff.py -p1 as suggested by CI) on src/llmq/signing_shares.cpp and commit the formatting changes so the pipeline passes.

🧰 Tools
🪛 GitHub Actions: Clang Diff Format Check

[error] 1668-1668: Clang format differences found. Run clang-format-diff.py -p1 or clang-format -i to fix formatting in this file.

🤖 Prompt for AI Agents
In src/llmq/signing_shares.cpp around line 1668 the for-loop formatting does not
match the project's clang-format settings; run the configured formatter (e.g.
clang-format on the file or clang-format-diff.py -p1 as suggested by CI) to
rewrite the loop and surrounding lines to match style, verify the diff, and
commit the formatted changes to the repo so the CI clang-format check passes.

if (workInterrupt) break;

workerPool.push([this, work = std::move(work)](int) {
workerPool.push([this, work = std::move(work)](int) mutable {
SignAndProcessSingleShare(std::move(work));
});
}
Expand Down
Loading