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

Merge branch 'features-2565' into 'master'

Features 2565 - Fixes.

See merge request libdap-chain-net-python!2
parents 69bb4028 e817a2fd
No related branches found
No related tags found
1 merge request!26Support 3689
......@@ -25,7 +25,7 @@ static PyMethodDef DapChainNetNodeMethods[] = {
{NULL, NULL, 0, NULL}
};
static PyTypeObject DapChainNodeInfoObject_DapChainNodeInfoObjectType = {
static PyTypeObject DapChainNetNodeObject_DapChainNetNodeObjectType = {
PyVarObject_HEAD_INIT(NULL, 0)
"CellFrame.Chain.Node", /* tp_name */
sizeof(PyDapChainNodeObject), /* tp_basicsize */
......
......@@ -123,8 +123,9 @@ PyObject *dap_chain_net_get_gdb_group_mempool_by_chain_type_py(PyObject *self, P
}
PyObject *dap_chain_net_links_connect_py(PyObject *self, PyObject *args){
dap_chain_net_links_connect(((PyDapChainNetObject*)self)->chain_net);
PyLong_FromLong(0);
// dap_chain_net_links_connect(((PyDapChainNetObject*)self)->chain_net);
// PyLong_FromLong(0);
return NULL;
}
PyObject *dap_chain_net_get_chain_by_chain_type_py(PyObject *self, PyObject *args){
PyObject *obj_chain_type;
......
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