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

[*] Fix. Now the variable DapChainLedger_DapChainLedgerType is declared as...

[*] Fix. Now the variable DapChainLedger_DapChainLedgerType is declared as static and this eliminates the problem with multiple definitions.
parent 38167a64
No related branches found
No related tags found
1 merge request!26Support 3689
......@@ -75,7 +75,7 @@ static PyMethodDef DapChainLedgerMethods[] = {
{NULL, NULL, 0, NULL}
};
PyTypeObject DapChainLedger_DapChainLedgerType = {
static PyTypeObject DapChainLedger_DapChainLedgerType = {
PyVarObject_HEAD_INIT(NULL, 0)
"CellFrame.Chain.Ledger", /* tp_name */
sizeof(PyDapChainLedgerObject), /* tp_basicsize */
......
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