Skip to content
Snippets Groups Projects
Commit ef72fa89 authored by dmitriy.gerasimov's avatar dmitriy.gerasimov
Browse files

Merge branch 'feature-4463' into 'master'

updated the genesis events + updated modules

See merge request !30
parents 7fa1ed36 3009200a
No related branches found
No related tags found
1 merge request!30updated the genesis events + updated modules
Pipeline #5442 passed with stage
in 5 minutes and 14 seconds
......@@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11)
SET( CPACK_PACKAGE_NAME "${PROJECT_NAME}")
SET( CPACK_PACKAGE_VERSION_MAJOR 4)
SET( CPACK_PACKAGE_VERSION_MINOR 0)
SET( CPACK_PACKAGE_VERSION_PATCH 49)
SET( CPACK_PACKAGE_VERSION_PATCH 50)
# init CellFrame SDK
add_definitions("-DDAP_VERSION=\"${CPACK_PACKAGE_VERSION_MAJOR}-${CPACK_PACKAGE_VERSION_MINOR}-${CPACK_PACKAGE_VERSION_PATCH}\"")
......
Subproject commit 21886ef54e5b6d00c605221271530f83201b1574
Subproject commit c3352cd33eb120307c0a6f01a102076f88b7e473
......@@ -13,7 +13,7 @@ is_celled=true
is_add_directly=true
datum_add_hashes_count=1
is_static_genesis_event=true
static_genesis_event=0xE0CCC6C94FEC3BCA0776DD3F37F287DA3F437887D6AFB61EE1320403F96D0B73
static_genesis_event=0xB1DF3177A0E764B5B7BF1675AC2D98FFF703BC704E06601A4F401C6F80895DCC
# Proof-of-State consensus config
[dag-pos]
......
......@@ -19,7 +19,8 @@ datum_add_hashes_count=1
# Switched off to false because hash symbols below are not well recognized
is_static_genesis_event=true
static_genesis_event=0x3893F021FF4AC718D46ABA6BD66EB143948E1F7E85F332E45DB03F8CE4951DA4
static_genesis_event=0x1984CF8CF92F626E11D39369183F97A08AA13233E8E1FADB105F455737A21A85
[dag-poa]
auth_certs_prefix=dapcash.testnet.master.cell
......
Subproject commit 9f688d245a213efe62908045611494b09916e647
Subproject commit 59f688812e111e7e1114f01b85422c27dabe1cfe
......@@ -395,7 +395,7 @@ int main( int argc, const char **argv )
if( l_port > 0 ) {
l_server = dap_server_new(l_events, (dap_config_get_item_str(g_config, "server", "listen_address")),
(uint16_t) l_port,
DAP_SERVER_TCP );
DAP_SERVER_TCP, NULL );
} else
log_it( L_WARNING, "Server is enabled but no port is defined" );
......@@ -446,7 +446,7 @@ int main( int argc, const char **argv )
bool bootstrap_balancer_enabled = dap_config_get_item_bool_default(g_config, "dns_server", "bootstrap_balancer", false);
log_it(L_DEBUG, "config dns_server->bootstrap_balancer = \"%u\" ", bootstrap_balancer_enabled);
if (bootstrap_balancer_enabled) {
dap_dns_server_start();
dap_dns_server_start(l_events);
}
// Chain Network init
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment