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

Merge branch 'hotfixes-1007' of gitlab.demlabs.net:cellframe/cellframe-sdk into hotfixes-1007

parents a9409c6c 5d80988d
No related branches found
No related tags found
1 merge request!1864[*] Fix wrong last tx changed value in xchange order history.
Pipeline #45869 passed with stage
in 13 minutes and 25 seconds
Subproject commit 39daa66fbe8cebb7aa87a0abe149239a54465524
Subproject commit a9e2246ac301ff17538754d94c8fbcd5558930cf
......@@ -646,8 +646,11 @@ json_object* dap_db_history_addr(json_object* a_json_arr_reply, dap_chain_addr_t
json_object_array_add(j_arr_data, j_obj_data);
}
}
if (l_continue)
if (l_continue) {
json_object_put(j_obj_tx);
json_object_put(j_arr_data);
continue;
}
if (l_is_need_correction) {
SUM_256_256(l_corr_value, l_fee_sum, &l_corr_value);
......
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