Skip to content

Commit 225c8a8

Browse files
codablockrandom-zebra
authored andcommitted
Add highly parallelized worker/helper for BLS/DKG calculations
1 parent df56dea commit 225c8a8

File tree

4 files changed

+1170
-0
lines changed

4 files changed

+1170
-0
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ set(SERVER_SOURCES
188188
./src/bloom.cpp
189189
./src/blocksignature.cpp
190190
./src/bls/bls_ies.cpp
191+
./src/bls/bls_worker.cpp
191192
./src/bls/bls_wrapper.cpp
192193
./src/chain.cpp
193194
./src/checkpoints.cpp

src/Makefile.am

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ BITCOIN_CORE_H = \
163163
bloom.h \
164164
blocksignature.h \
165165
bls/bls_ies.h \
166+
bls/bls_worker.h \
166167
bls/bls_wrapper.h \
167168
chain.h \
168169
chainparams.h \
@@ -341,6 +342,7 @@ libbitcoin_server_a_SOURCES = \
341342
bloom.cpp \
342343
blocksignature.cpp \
343344
bls/bls_ies.cpp \
345+
bls/bls_worker.cpp \
344346
bls/bls_wrapper.cpp \
345347
chain.cpp \
346348
checkpoints.cpp \

0 commit comments

Comments
 (0)