Skip to content

Commit af9a15f

Browse files
committed
lint: apply review suggestions
1 parent 6c89f0e commit af9a15f

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

src/chainlock/chainlock.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
#include <gsl/pointers.h>
1919

2020
#include <atomic>
21+
#include <cassert>
22+
#include <chrono>
2123
#include <map>
24+
#include <memory>
25+
#include <thread>
2226
#include <unordered_map>
2327

2428
class CBlock;

src/llmq/signing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ void CSigningManager::StartWorkerThread(PeerManager& peerman)
711711
assert(false);
712712
}
713713

714-
workThread = std::thread(&util::TraceThread, "sigshares", [this, &peerman] { WorkThreadMain(peerman); });
714+
workThread = std::thread(&util::TraceThread, "recsigs", [this, &peerman] { WorkThreadMain(peerman); });
715715
}
716716

717717
void CSigningManager::StopWorkerThread()

src/llmq/signing.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020

2121
#include <gsl/pointers.h>
2222

23+
#include <memory>
2324
#include <string_view>
25+
#include <thread>
2426
#include <unordered_map>
2527

2628
class CChainState;

0 commit comments

Comments
 (0)