diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-07-31 21:40:48 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-07-31 21:40:48 +0200 |
commit | fde9dc80f6e6a5fe4c5856b2ed78e6c024528c43 (patch) | |
tree | 35d5e52652b38f75a5279fe855cc1d345fe3c1c5 /src/auditor/report-lib.c | |
parent | 1d54400a025ff62ad15b77ab117ea5188884b1a1 (diff) |
-more json_pack cleaning
Diffstat (limited to 'src/auditor/report-lib.c')
-rw-r--r-- | src/auditor/report-lib.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/auditor/report-lib.c b/src/auditor/report-lib.c index 36baf640..5f45d719 100644 --- a/src/auditor/report-lib.c +++ b/src/auditor/report-lib.c @@ -114,35 +114,6 @@ TALER_ARL_do_abort (void) /** - * Convert absolute time to human-readable JSON string. - * - * @param at time to convert - * @return human-readable string representing the time - */ -json_t * -TALER_ARL_json_from_time_abs_nbo (struct GNUNET_TIME_AbsoluteNBO at) -{ - return json_string - (GNUNET_STRINGS_absolute_time_to_string - (GNUNET_TIME_absolute_ntoh (at))); -} - - -/** - * Convert absolute time to human-readable JSON string. - * - * @param at time to convert - * @return human-readable string representing the time - */ -json_t * -TALER_ARL_json_from_time_abs (struct GNUNET_TIME_Absolute at) -{ - return json_string - (GNUNET_STRINGS_absolute_time_to_string (at)); -} - - -/** * Add @a object to the report @a array. Fail hard if this fails. * * @param array report array to append @a object to |