Skip to content

Commit f7c36a6

Browse files
committed
bcutil: find unspent pre-RingCT amount
1 parent b35d7c6 commit f7c36a6

File tree

3 files changed

+221
-481
lines changed

3 files changed

+221
-481
lines changed

src/blockchain_utilities/CMakeLists.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,14 @@ monero_private_headers(blockchain_stats
143143

144144
####################
145145

146-
set(blockchain_find_locked_sources
147-
blockchain_find_locked.cpp
146+
set(blockchain_unspent_preringct_sources
147+
blockchain_unspent_preringct.cpp
148148
)
149149

150-
set(blockchain_find_locked_private_headers)
150+
set(blockchain_unspent_preringct_private_headers)
151151

152-
monero_private_headers(blockchain_find_locked
153-
${blockchain_find_locked_private_headers})
152+
monero_private_headers(blockchain_unspent_preringct
153+
${blockchain_unspent_preringct_private_headers})
154154

155155
################################################################################
156156

@@ -322,11 +322,11 @@ install(TARGETS blockchain_stats DESTINATION bin)
322322

323323
####################
324324

325-
monero_add_executable(blockchain_find_locked
326-
${blockchain_find_locked_sources}
327-
${blockchain_find_locked_private_headers})
325+
monero_add_executable(blockchain_unspent_preringct
326+
${blockchain_unspent_preringct_sources}
327+
${blockchain_unspent_preringct_private_headers})
328328

329-
target_link_libraries(blockchain_find_locked
329+
target_link_libraries(blockchain_unspent_preringct
330330
PRIVATE
331331
cryptonote_core
332332
blockchain_db
@@ -338,10 +338,10 @@ target_link_libraries(blockchain_find_locked
338338
${CMAKE_THREAD_LIBS_INIT}
339339
${EXTRA_LIBRARIES})
340340

341-
set_property(TARGET blockchain_find_locked
341+
set_property(TARGET blockchain_unspent_preringct
342342
PROPERTY
343-
OUTPUT_NAME "monero-blockchain-find-locked")
344-
install(TARGETS blockchain_find_locked DESTINATION bin)
343+
OUTPUT_NAME "monero-blockchain-unspent-preringct")
344+
install(TARGETS blockchain_unspent_preringct DESTINATION bin)
345345

346346
####################
347347

0 commit comments

Comments
 (0)