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

[*] Ledger load fix

parent 319de580
No related branches found
No related tags found
2 merge requests!61bugs-5311,!58bugfix-5120
......@@ -148,7 +148,7 @@ PyObject *dap_chain_ledger_tx_remove_py(PyObject *self, PyObject *args){
return PyLong_FromLong(res);
}
PyObject *dap_chain_ledger_purge_py(PyObject *self, PyObject *args){
dap_chain_ledger_purge(((PyDapChainLedgerObject*)self)->ledger);
dap_chain_ledger_purge(((PyDapChainLedgerObject*)self)->ledger, false);
return PyLong_FromLong(0);
}
PyObject *dap_chain_ledger_count_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