Skip to content
Snippets Groups Projects
Commit 8726fcfd authored by Roman Khlopkov's avatar Roman Khlopkov 🔜 Committed by dmitriy.gerasimov
Browse files

Features-2703

parent fcbabd93
No related branches found
No related tags found
No related merge requests found
......@@ -86,3 +86,6 @@
path = cellframe-sdk
url = ../cellframe-sdk
branch = master
[submodule "cellframe-sdk-python/libdap-chain-wallet-python"]
path = cellframe-sdk-python/libdap-chain-wallet-python
url = ../libdap-chain-wallet-python
......@@ -215,6 +215,7 @@ if(UNIX AND NOT WIN32)
add_subdirectory(cellframe-sdk-python/libdap-chain-python)
add_subdirectory(cellframe-sdk-python/libdap-app-cli-python)
add_subdirectory(cellframe-sdk-python/libdap-client-python)
add_subdirectory(cellframe-sdk-python/libdap-chain-wallet-python)
add_subdirectory(python-cellframe)
add_subdirectory(libdap-plugins-python)
set(NODE_LIBRARIES ${NODE_LIBRARIES} ${PYTHON_LIBRARIES} dap_plugins_python)
......
Subproject commit 90042abe52f6103a8aae8eccc45b191c3b78b836
Subproject commit b8155a4f169fb68b07b03c42984d146d2647ebbf
Subproject commit bb89f309040d195488cee0ce33b8929b994ad346
Subproject commit 0b135fbdaa7fdb217afddf76469e84fe87d68871
Subproject commit 591cf4502be97766a9ac800bb66de761890c1c9f
Subproject commit 83f950f59d3ba97bcac9f108e8fb93bd12bfcfb3
Subproject commit 1ef04620dc5df45ef8da6a080c2f40c295514b42
Subproject commit 268d0cb2829e66f6c0e3b79f2b2fd4741ed51ef7
Subproject commit c67dd84c16c36b491fa78ae50735d520cf6a9bd1
......@@ -90,6 +90,7 @@
#include "dap_chain_global_db.h"
#include "dap_chain_mempool.h"
#include "dap_chain_node.h"
#include "dap_chain_node_cli.h"
#include "dap_stream_session.h"
......@@ -368,6 +369,11 @@ int main( int argc, const char **argv )
}
#endif
if (dap_chain_node_mempool_init()) {
log_it( L_CRITICAL, "Can't init automatic mempool processing" );
return -13;
}
save_process_pid_in_file(s_pid_file_path);
bServerEnabled = dap_config_get_item_bool_default( g_config, "server", "enabled", false );
......@@ -479,6 +485,7 @@ failure:
dap_http_deinit();
dap_server_deinit();
dap_enc_ks_deinit();
dap_chain_node_mempool_deinit();
dap_config_close( g_config );
dap_common_deinit();
......
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