Skip to content

Commit 650241e

Browse files
fix: restore Cleanup() declaration in CSigningManager header
The Cleanup() method declaration was accidentally removed during rebase conflict resolution but the method is still defined and used in signing.cpp.
1 parent 7155376 commit 650241e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/llmq/signing.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ class CSigningManager
248248
Mutex workMutex;
249249
std::condition_variable_any workCv;
250250
std::atomic<uint64_t> workEpoch{0};
251+
void Cleanup(); // called from the worker thread
251252
void WorkThreadMain(PeerManager& peerman) EXCLUSIVE_LOCKS_REQUIRED(!cs_pending, !cs_listeners);
252253

253254
public:

0 commit comments

Comments
 (0)