diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-21 12:56:16 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-21 12:56:16 +0100 |
commit | a8b8258e12f8e04936bffd82a2e31be7117ec860 (patch) | |
tree | ebd159531f6a8ab552579835c85286e8a8016777 /src/auditor/taler-helper-auditor-deposits.c | |
parent | 2ace9969b7e1ede610ff99546c5a84f59adf0931 (diff) |
steps towards new split-auditor logic
Diffstat (limited to 'src/auditor/taler-helper-auditor-deposits.c')
-rw-r--r-- | src/auditor/taler-helper-auditor-deposits.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/auditor/taler-helper-auditor-deposits.c b/src/auditor/taler-helper-auditor-deposits.c index eb3e0e7a3..00042159c 100644 --- a/src/auditor/taler-helper-auditor-deposits.c +++ b/src/auditor/taler-helper-auditor-deposits.c @@ -303,14 +303,20 @@ run (void *cls, { json_t *report; - report = json_pack ("{s:o, s:o, s:I}", + report = json_pack ("{s:o, s:I, s:o, s:o, s:o}", "deposit_confirmation_inconsistencies", report_deposit_confirmation_inconsistencies, "missing_deposit_confirmation_count", (json_int_t) number_missed_deposit_confirmations, "missing_deposit_confirmation_total", TALER_JSON_from_amount ( - &total_missed_deposit_confirmations) + &total_missed_deposit_confirmations), + "auditor_start_time", + TALER_ARL_json_from_time_abs ( + start_time), + "auditor_end_time", + TALER_ARL_json_from_time_abs ( + GNUNET_TIME_absolute_get ()) ); GNUNET_break (NULL != report); TALER_ARL_done (report); |