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

[*] Fix.

parent 995b68b1
No related branches found
No related tags found
1 merge request!6[*] Fix.
......@@ -298,7 +298,7 @@ static PyTypeObject DapChainNetSrvPriceUnitUIDObject_DapChainNetSrvPriceUnitUIDO
/* Chain cell id */
typedef struct PyDapChainID{
PyObject_HEAD
dap_chain_id_t chain_id;
dap_chain_id_t *chain_id;
}PyDapChainIDObject;
static PyTypeObject DapChainIDObject_DapChainIDType = {
......@@ -349,7 +349,7 @@ static PyTypeObject DapChainIDObject_DapChainIDType = {
/* Chain cell id */
typedef struct PyDapChainCellID{
PyObject_HEAD
dap_chain_cell_id_t *cell_id;
dap_chain_cell_id_t cell_id;
}PyDapChainCellIDObject;
static PyTypeObject DapChainCellIDObject_DapChainCellIDType = {
......
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