diff --git a/CMakeLists.txt b/CMakeLists.txt index 4de7dfe978e2016a8ec9866b96cd1ddb296d9bd0..1f39fe3400ec763c2c01200f93cb5212125c9d0c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,10 +8,10 @@ set(CMAKE_C_STANDARD 11) SET( CPACK_PACKAGE_NAME "${PROJECT_NAME}") SET( CPACK_PACKAGE_VERSION_MAJOR 4) SET( CPACK_PACKAGE_VERSION_MINOR 1) -SET( CPACK_PACKAGE_VERSION_PATCH 29) +SET( CPACK_PACKAGE_VERSION_PATCH 30) # init CellFrame SDK -add_definitions("-DDAP_VERSION=\"${CPACK_PACKAGE_VERSION_MAJOR}-${CPACK_PACKAGE_VERSION_MINOR}-${CPACK_PACKAGE_VERSION_PATCH}\"") +add_definitions("-DDAP_VERSION=\"${CPACK_PACKAGE_VERSION_MAJOR}-${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}\"") set(SUBMODULES_NO_BUILD ON) set(SUPPORT_PYTHON_PLUGINS ON) diff --git a/cellframe-sdk b/cellframe-sdk index 8234adfd760a245fa19ef5e529b2e3bc2d0014d4..6f8745237388c96a6d196501e14d8f7b2e60875c 160000 --- a/cellframe-sdk +++ b/cellframe-sdk @@ -1 +1 @@ -Subproject commit 8234adfd760a245fa19ef5e529b2e3bc2d0014d4 +Subproject commit 6f8745237388c96a6d196501e14d8f7b2e60875c diff --git a/dist/share/configs/dapcash-node.cfg.tpl b/dist/share/configs/dapcash-node.cfg.tpl index 6865f630c1128f37af03b75984b11b12ee11b108..de66987f631ca4f87f8b0a2e1d396046c7c05b1d 100644 --- a/dist/share/configs/dapcash-node.cfg.tpl +++ b/dist/share/configs/dapcash-node.cfg.tpl @@ -31,7 +31,7 @@ pricelist=[] # Mempool [mempool] -# Automaticaly should be true for master node +# Automaticaly should be true for master ad root node role # auto_proc=false diff --git a/sources/main.c b/sources/main.c index b257d201cf779e1c21096844d726350ee39184b1..1f1edf5009a84556a5ae5e1e5f7fabd93d1dec92 100755 --- a/sources/main.c +++ b/sources/main.c @@ -232,8 +232,6 @@ int main( int argc, const char **argv ) bServerEnabled = dap_config_get_item_bool_default( g_config, "server", "enabled", false ); - log_it ( L_DEBUG,"config server->enabled = \"%u\" ", bServerEnabled ); - if ( bServerEnabled && dap_server_init() != 0 ) { log_it( L_CRITICAL, "Can't init socket server module" ); return -4;