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!26Support 3689
...@@ -298,7 +298,7 @@ static PyTypeObject DapChainNetSrvPriceUnitUIDObject_DapChainNetSrvPriceUnitUIDO ...@@ -298,7 +298,7 @@ static PyTypeObject DapChainNetSrvPriceUnitUIDObject_DapChainNetSrvPriceUnitUIDO
/* Chain cell id */ /* Chain cell id */
typedef struct PyDapChainID{ typedef struct PyDapChainID{
PyObject_HEAD PyObject_HEAD
dap_chain_id_t chain_id; dap_chain_id_t *chain_id;
}PyDapChainIDObject; }PyDapChainIDObject;
static PyTypeObject DapChainIDObject_DapChainIDType = { static PyTypeObject DapChainIDObject_DapChainIDType = {
...@@ -349,7 +349,7 @@ static PyTypeObject DapChainIDObject_DapChainIDType = { ...@@ -349,7 +349,7 @@ static PyTypeObject DapChainIDObject_DapChainIDType = {
/* Chain cell id */ /* Chain cell id */
typedef struct PyDapChainCellID{ typedef struct PyDapChainCellID{
PyObject_HEAD PyObject_HEAD
dap_chain_cell_id_t *cell_id; dap_chain_cell_id_t cell_id;
}PyDapChainCellIDObject; }PyDapChainCellIDObject;
static PyTypeObject DapChainCellIDObject_DapChainCellIDType = { 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