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

[*] Build fix

parent 705913ed
No related branches found
No related tags found
1 merge request!68hotfix-4954
This commit is part of merge request !68. Comments created here will be created in the context of that merge request.
...@@ -83,6 +83,6 @@ PyObject * dap_chain_balance_to_coins_py(PyObject *self, PyObject *args){ ...@@ -83,6 +83,6 @@ PyObject * dap_chain_balance_to_coins_py(PyObject *self, PyObject *args){
if (!PyArg_ParseTuple(args, "k", &balance)){ if (!PyArg_ParseTuple(args, "k", &balance)){
return NULL; return NULL;
} }
const char *str = dap_chain_balance_to_coins(dap_chain_uint128_to(balance)); const char *str = dap_chain_balance_to_coins(dap_chain_uint128_from(balance));
return Py_BuildValue("s", str); return Py_BuildValue("s", str);
} }
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