Skip to content
Snippets Groups Projects
Commit 94e46a61 authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] Commented out the initialization of dap_http_client_simple_init due to its...

[*] Commented out the initialization of dap_http_client_simple_init due to its removal from the SDK.
parent f06146fa
No related branches found
No related tags found
1 merge request!24Features 3398
......@@ -34,7 +34,7 @@
#include "wrapping_dap_mempool.h"
#include "wrapping_dap_http_folder.h"
#include "dap_http_client_simple.h"
//#include "dap_http_client_simple.h"
#include "dap_chain_wallet.h"
#include "dap_chain_cs.h"
#include "dap_chain_cs_dag.h"
......
......@@ -264,11 +264,11 @@ PyObject *python_cellframe_init(PyObject *self, PyObject *args){
}
s_init_mempool = true;
} else if (strcmp(c_value, "HttpClientSimple") == 0){
if (dap_http_client_simple_init() != 0){
PyErr_SetString(CellFrame_error, "Failed to initialize HttpClientSimple module. ");
return NULL;
}
s_init_http_client_simple = true;
// if (dap_http_client_simple_init() != 0){
// PyErr_SetString(CellFrame_error, "Failed to initialize HttpClientSimple module. ");
// return NULL;
// }
// s_init_http_client_simple = true;
} else if (strcmp(c_value, "Wallet") == 0){
if (dap_chain_wallet_init() != 0){
PyErr_SetString(CellFrame_error, "Failed to initialize Wallet module. ");
......
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