build: Move lockedpool.cpp from util -> crypto

Allows `crypto` functions and classes to use `secure_allocator`.
This commit is contained in:
David Gumberg 2025-01-31 13:29:40 -08:00
parent 15fa9efd3c
commit 721c9240fb
2 changed files with 1 additions and 1 deletions

View file

@ -20,6 +20,7 @@ add_library(bitcoin_crypto STATIC EXCLUDE_FROM_ALL
sha512.cpp sha512.cpp
siphash.cpp siphash.cpp
../support/cleanse.cpp ../support/cleanse.cpp
../support/lockedpool.cpp
) )
target_link_libraries(bitcoin_crypto target_link_libraries(bitcoin_crypto

View file

@ -32,7 +32,6 @@ add_library(bitcoin_util STATIC EXCLUDE_FROM_ALL
../random.cpp ../random.cpp
../randomenv.cpp ../randomenv.cpp
../streams.cpp ../streams.cpp
../support/lockedpool.cpp
../sync.cpp ../sync.cpp
) )