From 110fe5b640a411cb939fbd5eba0e2fac0a296ea8 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 15 Dec 2021 11:38:57 +0100 Subject: -fix FTBFS --- src/auditordb/test_auditordb.c | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'src/auditordb/test_auditordb.c') diff --git a/src/auditordb/test_auditordb.c b/src/auditordb/test_auditordb.c index 38f0c24f4..f8faa0694 100644 --- a/src/auditordb/test_auditordb.c +++ b/src/auditordb/test_auditordb.c @@ -134,10 +134,10 @@ run (void *cls) struct TALER_DenominationPrivateKey denom_priv; struct TALER_DenominationPublicKey denom_pub; struct TALER_DenominationHash denom_pub_hash; - struct GNUNET_TIME_Absolute now; - struct GNUNET_TIME_Absolute past; - struct GNUNET_TIME_Absolute future; - struct GNUNET_TIME_Absolute date; + struct GNUNET_TIME_Timestamp now; + struct GNUNET_TIME_Timestamp past; + struct GNUNET_TIME_Timestamp future; + struct GNUNET_TIME_Timestamp date; RND_BLK (&master_pub); RND_BLK (&reserve_pub); @@ -152,16 +152,17 @@ run (void *cls) TALER_denom_priv_free (&denom_priv); TALER_denom_pub_free (&denom_pub); - now = GNUNET_TIME_absolute_get (); - (void) GNUNET_TIME_round_abs (&now); - past = GNUNET_TIME_absolute_subtract (now, - GNUNET_TIME_relative_multiply ( - GNUNET_TIME_UNIT_HOURS, - 4)); - future = GNUNET_TIME_absolute_add (now, - GNUNET_TIME_relative_multiply ( - GNUNET_TIME_UNIT_HOURS, - 4)); + now = GNUNET_TIME_timestamp_get (); + past = GNUNET_TIME_absolute_to_timestamp ( + GNUNET_TIME_absolute_subtract (now.abs_time, + GNUNET_TIME_relative_multiply ( + GNUNET_TIME_UNIT_HOURS, + 4))); + future = GNUNET_TIME_absolute_to_timestamp ( + GNUNET_TIME_absolute_add (now.abs_time, + GNUNET_TIME_relative_multiply ( + GNUNET_TIME_UNIT_HOURS, + 4))); GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Test: auditor_insert_exchange\n"); @@ -488,7 +489,7 @@ run (void *cls) select_historic_denom_revenue_result ( void *cls, const struct TALER_DenominationHash *denom_pub_hash2, - struct GNUNET_TIME_Absolute revenue_timestamp2, + struct GNUNET_TIME_Timestamp revenue_timestamp2, const struct TALER_Amount *revenue_balance2, const struct TALER_Amount *loss2) { @@ -548,12 +549,11 @@ run (void *cls) "Test: select_historic_reserve_revenue\n"); int - select_historic_reserve_revenue_result (void *cls, - struct GNUNET_TIME_Absolute - start_time2, - struct GNUNET_TIME_Absolute end_time2, - const struct - TALER_Amount *reserve_profits2) + select_historic_reserve_revenue_result ( + void *cls, + struct GNUNET_TIME_Timestamp start_time2, + struct GNUNET_TIME_Timestamp end_time2, + const struct TALER_Amount *reserve_profits2) { static int n = 0; -- cgit v1.2.3