We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28d318 commit 26bd0d2Copy full SHA for 26bd0d2
src/bench/bench_dash.cpp
@@ -11,6 +11,7 @@
11
12
#include "bls/bls.h"
13
14
+void InitBLSTests();
15
void CleanupBLSTests();
16
void CleanupBLSDkgTests();
17
@@ -24,6 +25,7 @@ main(int argc, char** argv)
24
25
ECCVerifyHandle verifyHandle;
26
27
BLSInit();
28
+ InitBLSTests();
29
SetupEnvironment();
30
fPrintToDebugLog = false; // don't want to write to debug.log file
31
src/bench/bls.cpp
@@ -11,6 +11,11 @@
CBLSWorker blsWorker;
+void InitBLSTests()
+{
+ blsWorker.Start();
+}
18
+
19
void CleanupBLSTests()
20
{
21
blsWorker.Stop();
0 commit comments