Skip to content
Snippets Groups Projects
Commit 76b29fdf authored by Roman Khlopkov's avatar Roman Khlopkov 🔜
Browse files

[*] Ledger wrap change

parent 05ce7d5e
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ PyObject *dap_chain_ledger_set_local_cell_id_py(PyObject *self, PyObject *args); ...@@ -29,7 +29,7 @@ PyObject *dap_chain_ledger_set_local_cell_id_py(PyObject *self, PyObject *args);
PyObject *dap_chain_node_datum_tx_calc_hash_py(PyObject *self, PyObject *args); PyObject *dap_chain_node_datum_tx_calc_hash_py(PyObject *self, PyObject *args);
PyObject *dap_chain_ledger_tx_add_py(PyObject *self, PyObject *args); PyObject *dap_chain_ledger_tx_add_py(PyObject *self, PyObject *args);
PyObject *dap_chain_ledger_token_add_py(PyObject *self, PyObject *args); PyObject *dap_chain_ledger_token_add_py(PyObject *self, PyObject *args);
PyObject *dap_chain_ledger_token_emission_add_py(PyObject *self, PyObject *args); PyObject *dap_chain_ledger_token_emission_load_py(PyObject *self, PyObject *args);
PyObject *dap_chain_ledger_token_emission_find_py(PyObject *self, PyObject *args); PyObject *dap_chain_ledger_token_emission_find_py(PyObject *self, PyObject *args);
PyObject *dap_chain_ledger_tx_get_token_ticker_by_hash_py(PyObject *self, PyObject *args); PyObject *dap_chain_ledger_tx_get_token_ticker_by_hash_py(PyObject *self, PyObject *args);
PyObject *dap_chain_ledger_addr_get_token_ticker_all_py(PyObject *self, PyObject *args); PyObject *dap_chain_ledger_addr_get_token_ticker_all_py(PyObject *self, PyObject *args);
...@@ -54,7 +54,7 @@ static PyMethodDef DapChainLedgerMethods[] = { ...@@ -54,7 +54,7 @@ static PyMethodDef DapChainLedgerMethods[] = {
{"nodeDatumTxCalcHash", (PyCFunction)dap_chain_node_datum_tx_calc_hash_py, METH_VARARGS, ""}, {"nodeDatumTxCalcHash", (PyCFunction)dap_chain_node_datum_tx_calc_hash_py, METH_VARARGS, ""},
{"txAdd", (PyCFunction)dap_chain_ledger_tx_add_py, METH_VARARGS, ""}, {"txAdd", (PyCFunction)dap_chain_ledger_tx_add_py, METH_VARARGS, ""},
{"tokenAdd", (PyCFunction)dap_chain_ledger_token_add_py, METH_VARARGS, ""}, {"tokenAdd", (PyCFunction)dap_chain_ledger_token_add_py, METH_VARARGS, ""},
{"tokenEmissionAdd", (PyCFunction)dap_chain_ledger_token_emission_add_py, METH_VARARGS, ""}, {"tokenEmissionLoad", (PyCFunction)dap_chain_ledger_token_emission_load_py, METH_VARARGS, ""},
{"tokenEmissionFind", (PyCFunction)dap_chain_ledger_token_emission_find_py, METH_VARARGS, ""}, {"tokenEmissionFind", (PyCFunction)dap_chain_ledger_token_emission_find_py, METH_VARARGS, ""},
{"txGetTokenTickerByHash", (PyCFunction)dap_chain_ledger_tx_get_token_ticker_by_hash_py, METH_VARARGS, ""}, {"txGetTokenTickerByHash", (PyCFunction)dap_chain_ledger_tx_get_token_ticker_by_hash_py, METH_VARARGS, ""},
{"addrGetTokenTickerAll", (PyCFunction)dap_chain_ledger_addr_get_token_ticker_all_py, METH_VARARGS, ""}, {"addrGetTokenTickerAll", (PyCFunction)dap_chain_ledger_addr_get_token_ticker_all_py, METH_VARARGS, ""},
......
...@@ -49,12 +49,12 @@ PyObject *dap_chain_ledger_token_add_py(PyObject *self, PyObject *args) ...@@ -49,12 +49,12 @@ PyObject *dap_chain_ledger_token_add_py(PyObject *self, PyObject *args)
((PyDapChainDatumTokenObject*)token)->token, token_size); ((PyDapChainDatumTokenObject*)token)->token, token_size);
return PyLong_FromLong(res); return PyLong_FromLong(res);
} }
PyObject *dap_chain_ledger_token_emission_add_py(PyObject *self, PyObject *args){ PyObject *dap_chain_ledger_token_emission_load_py(PyObject *self, PyObject *args){
PyObject *token_emission; PyObject *token_emission;
size_t token_emissiom_size; size_t token_emissiom_size;
if (!PyArg_ParseTuple(args, "O|n", &token_emission, &token_emissiom_size)) if (!PyArg_ParseTuple(args, "O|n", &token_emission, &token_emissiom_size))
return NULL; return NULL;
int res = dap_chain_ledger_token_emission_add(((PyDapChainLedgerObject*)self)->ledger, (byte_t *)((PyDapChainDatumTokenEmissionObject*)token_emission)->token_emission, token_emissiom_size); int res = dap_chain_ledger_token_emission_load(((PyDapChainLedgerObject*)self)->ledger, (byte_t *)((PyDapChainDatumTokenEmissionObject*)token_emission)->token_emission, token_emissiom_size);
return PyLong_FromLong(res); return PyLong_FromLong(res);
} }
PyObject *dap_chain_ledger_token_emission_find_py(PyObject *self, PyObject *args){ PyObject *dap_chain_ledger_token_emission_find_py(PyObject *self, PyObject *args){
......
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