Skip to content
Snippets Groups Projects
Commit eb93c737 authored by Constantin P.'s avatar Constantin P. 💬
Browse files

Merge remote-tracking branch 'origin/feature-12805_m' into master-2809

parents aba6b469 4ce510b8
No related branches found
No related tags found
1 merge request!413Master 2809
...@@ -86,7 +86,7 @@ PyObject *dap_chain_ledger_tx_add_py(PyObject *self, PyObject *args){ ...@@ -86,7 +86,7 @@ PyObject *dap_chain_ledger_tx_add_py(PyObject *self, PyObject *args){
return NULL; return NULL;
dap_hash_fast_t l_tx_hash; dap_hash_fast_t l_tx_hash;
dap_hash_fast(obj_datum_tx->datum_tx, dap_chain_datum_tx_get_size(obj_datum_tx->datum_tx), &l_tx_hash); dap_hash_fast(obj_datum_tx->datum_tx, dap_chain_datum_tx_get_size(obj_datum_tx->datum_tx), &l_tx_hash);
int res = dap_ledger_tx_add(((PyDapChainLedgerObject*)self)->ledger, obj_datum_tx->datum_tx, &l_tx_hash, false); int res = dap_ledger_tx_add(((PyDapChainLedgerObject*)self)->ledger, obj_datum_tx->datum_tx, &l_tx_hash, false, NULL);
return PyLong_FromLong(res); return PyLong_FromLong(res);
} }
PyObject *dap_chain_ledger_token_add_py(PyObject *self, PyObject *args) PyObject *dap_chain_ledger_token_add_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