summaryrefslogtreecommitdiff
path: root/src/auditordb/test_auditordb.c
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2021-12-15 11:38:57 +0100
committerChristian Grothoff <grothoff@gnunet.org>2021-12-15 11:38:57 +0100
commit110fe5b640a411cb939fbd5eba0e2fac0a296ea8 (patch)
tree865080c88ba22b9d726c122959ca08516751ab85 /src/auditordb/test_auditordb.c
parentfdfcb29027c2339ef0452de78c5aefd2f73006e5 (diff)
downloadexchange-110fe5b640a411cb939fbd5eba0e2fac0a296ea8.tar.gz
exchange-110fe5b640a411cb939fbd5eba0e2fac0a296ea8.tar.bz2
exchange-110fe5b640a411cb939fbd5eba0e2fac0a296ea8.zip
-fix FTBFS
Diffstat (limited to 'src/auditordb/test_auditordb.c')
-rw-r--r--src/auditordb/test_auditordb.c42
1 files changed, 21 insertions, 21 deletions
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;