Skip to content
Snippets Groups Projects
Commit cd04ed43 authored by oljas.jarasbaev's avatar oljas.jarasbaev
Browse files

...

parent 8b3fc8ce
No related branches found
No related tags found
1 merge request!1864[*] Fix wrong last tx changed value in xchange order history.
Pipeline #45621 passed with stage
in 24 minutes and 1 second
...@@ -805,7 +805,7 @@ static int s_cli_blocks(int a_argc, char ** a_argv, void **a_str_reply) ...@@ -805,7 +805,7 @@ static int s_cli_blocks(int a_argc, char ** a_argv, void **a_str_reply)
dap_time_to_str_rfc822(l_time_buf, DAP_TIME_STR_SIZE, l_datum->header.ts_create); dap_time_to_str_rfc822(l_time_buf, DAP_TIME_STR_SIZE, l_datum->header.ts_create);
json_object_object_add(json_obj_tx, "ts_create",json_object_new_string(l_time_buf)); json_object_object_add(json_obj_tx, "ts_create",json_object_new_string(l_time_buf));
json_object_object_add(json_obj_tx, "data_size",json_object_new_int(l_datum->header.data_size)); json_object_object_add(json_obj_tx, "data_size",json_object_new_int(l_datum->header.data_size));
dap_chain_datum_dump_json(a_json_arr_reply, json_obj_tx,l_datum,l_hash_out_type,l_net->pub.id); dap_chain_datum_dump_json(*a_json_arr_reply, json_obj_tx,l_datum,l_hash_out_type,l_net->pub.id);
json_object_array_add(json_arr_datum_out, json_obj_tx); json_object_array_add(json_arr_datum_out, json_obj_tx);
} }
// Signatures // Signatures
......
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