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

Merge branch 'features-2780' into 'master'

[*] Fix.

See merge request libdap-chain-common-python!6
parents 995b68b1 65a167cc
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