mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
updated submodules, bugfixes
- added new fift/func code for validator complaint creation - bugfixes in validator - updates in tonlib - new versions of rocksdb/abseil - hardfork support
This commit is contained in:
parent
16a4566091
commit
9f008b129f
129 changed files with 8438 additions and 879 deletions
|
@ -110,6 +110,25 @@ set(DISK_VALIDATOR_SOURCE
|
|||
${VALIDATOR_DB_SOURCE}
|
||||
)
|
||||
|
||||
set(HARDFORK_VALIDATOR_SOURCE
|
||||
apply-block.cpp
|
||||
block-handle.cpp
|
||||
shard-client.cpp
|
||||
validator-full-id.cpp
|
||||
validator-group.cpp
|
||||
validator-options.cpp
|
||||
|
||||
downloaders/wait-block-data-disk.cpp
|
||||
downloaders/wait-block-state.cpp
|
||||
downloaders/wait-block-state-merge.cpp
|
||||
downloaders/download-state.cpp
|
||||
|
||||
manager-init.cpp
|
||||
manager-hardfork.cpp
|
||||
|
||||
${VALIDATOR_DB_SOURCE}
|
||||
)
|
||||
|
||||
set(FULL_NODE_SOURCE
|
||||
full-node.h
|
||||
full-node.hpp
|
||||
|
@ -139,6 +158,7 @@ set(FULL_NODE_SOURCE
|
|||
|
||||
add_library(validator STATIC ${VALIDATOR_SOURCE})
|
||||
add_library(validator-disk STATIC ${DISK_VALIDATOR_SOURCE})
|
||||
add_library(validator-hardfork STATIC ${HARDFORK_VALIDATOR_SOURCE})
|
||||
add_library(full-node STATIC ${FULL_NODE_SOURCE})
|
||||
|
||||
target_include_directories(validator PUBLIC
|
||||
|
@ -155,6 +175,13 @@ target_include_directories(validator-disk PUBLIC
|
|||
${OPENSSL_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
target_include_directories(validator-hardfork PUBLIC
|
||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/..
|
||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/../crypto
|
||||
${OPENSSL_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
target_include_directories(full-node PUBLIC
|
||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/..
|
||||
|
@ -168,5 +195,8 @@ target_link_libraries(validator PRIVATE tdutils tdactor adnl rldp tl_api dht tdf
|
|||
target_link_libraries(validator-disk PRIVATE tdutils tdactor adnl rldp tl_api dht tdfec
|
||||
overlay catchain validatorsession ton_crypto ton_block ton_db)
|
||||
|
||||
target_link_libraries(validator-hardfork PRIVATE tdutils tdactor adnl rldp tl_api dht tdfec
|
||||
overlay catchain validatorsession ton_crypto ton_block ton_db)
|
||||
|
||||
target_link_libraries(full-node PRIVATE tdutils tdactor adnl rldp tl_api dht tdfec
|
||||
overlay catchain validatorsession ton_crypto ton_block ton_db)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue