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

[*] Stake service partially debugged

parent cfaa3c0a
No related branches found
No related tags found
1 merge request!32features-3975+3977
......@@ -230,7 +230,7 @@ PyObject *dap_chain_ledger_tx_cache_find_out_cond_py(PyObject *self, PyObject *a
((PyDapChainDatumTxObject*)res)->datum_tx = (dap_chain_datum_tx_t*)dap_chain_ledger_tx_cache_find_out_cond(
((PyDapChainLedgerObject*)self)->ledger,
((PyDapHashFastObject*)obj_first_hash)->hash_fast,
out_conds, out_cond_idx);
out_conds, out_cond_idx, NULL);
return Py_BuildValue("O", res);
}
PyObject *dap_chain_ledger_tx_cache_get_out_cond_value_py(PyObject *self, PyObject *args){
......
......@@ -33,7 +33,7 @@ PyObject *dap_chain_addr_fill_py(PyObject *self, PyObject *args){
PyObject *net_id;
if (!PyArg_ParseTuple(args, "O|O", &key, &net_id))
return NULL;
dap_chain_addr_fill(((PyDapChainAddrObject*)self)->addr, ((PyCryptoKeyObject*)key)->key, &(((PyDapChainNetIdObject*)net_id)->net_id));
dap_chain_addr_fill_from_key(((PyDapChainAddrObject*)self)->addr, ((PyCryptoKeyObject*)key)->key, (((PyDapChainNetIdObject*)net_id)->net_id));
return self;
}
......
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