Delayed node is much like witness_node, except it doesn't have support for block productuion (thus cannot be a witness) and it is not intended to use the P2P network. The delayed node requires a trusted node it can connect to via RPC and download blocks from. The delayed node will only download blocks from the trusted node if those blocks have received a configurable number of confirmations. This commit effectively resolves #237
14 lines
450 B
CMake
14 lines
450 B
CMake
add_subdirectory( cli_wallet )
|
|
add_subdirectory( witness_node )
|
|
add_subdirectory( delayed_node )
|
|
add_subdirectory( js_operation_serializer )
|
|
add_subdirectory( size_checker )
|
|
|
|
set(BUILD_QT_GUI FALSE CACHE BOOL "Build the Qt-based light client GUI")
|
|
if(BUILD_QT_GUI)
|
|
add_subdirectory(light_client)
|
|
endif()
|
|
set(BUILD_WEB_NODE FALSE CACHE BOOL "Build the Qt-based full node with web GUI")
|
|
if(BUILD_WEB_NODE)
|
|
add_subdirectory(full_web_node)
|
|
endif()
|