summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_refreshes_reveal.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-07-23 20:40:13 +0200
committerChristian Grothoff <christian@grothoff.org>2021-07-23 20:40:13 +0200
commit325b60989faadb54213af578bb9b1b705d022726 (patch)
tree2d527bb489a09bd601b5defbd04c08109eabce4d /src/exchange/taler-exchange-httpd_refreshes_reveal.c
parent098bd64f39ce9f6bfca54fe2505b91a079c22f16 (diff)
downloadexchange-325b60989faadb54213af578bb9b1b705d022726.tar.gz
exchange-325b60989faadb54213af578bb9b1b705d022726.tar.bz2
exchange-325b60989faadb54213af578bb9b1b705d022726.zip
-use new GNUNET_TIME functions
Diffstat (limited to 'src/exchange/taler-exchange-httpd_refreshes_reveal.c')
-rw-r--r--src/exchange/taler-exchange-httpd_refreshes_reveal.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/exchange/taler-exchange-httpd_refreshes_reveal.c b/src/exchange/taler-exchange-httpd_refreshes_reveal.c
index d915aefce..4fbc949ee 100644
--- a/src/exchange/taler-exchange-httpd_refreshes_reveal.c
+++ b/src/exchange/taler-exchange-httpd_refreshes_reveal.c
@@ -546,7 +546,6 @@ resolve_refreshes_reveal_denominations (struct MHD_Connection *connection,
enum GNUNET_GenericReturnValue res;
MHD_RESULT ret;
struct TEH_KeyStateHandle *ksh;
- struct GNUNET_TIME_Absolute now;
ksh = TEH_keys_get_state ();
if (NULL == ksh)
@@ -557,8 +556,6 @@ resolve_refreshes_reveal_denominations (struct MHD_Connection *connection,
NULL);
}
/* Parse denomination key hashes */
- now = GNUNET_TIME_absolute_get ();
- (void) GNUNET_TIME_round_abs (&now);
for (unsigned int i = 0; i<num_fresh_coins; i++)
{
struct GNUNET_JSON_Specification spec[] = {
@@ -584,8 +581,12 @@ resolve_refreshes_reveal_denominations (struct MHD_Connection *connection,
if (NULL == dks[i])
return mret;
- if (now.abs_value_us >= dks[i]->meta.expire_withdraw.abs_value_us)
+ if (GNUNET_TIME_absolute_is_past (dks[i]->meta.expire_withdraw))
{
+ struct GNUNET_TIME_Absolute now;
+
+ now = GNUNET_TIME_absolute_get ();
+ (void) GNUNET_TIME_round_abs (&now);
/* This denomination is past the expiration time for withdraws */
return TEH_RESPONSE_reply_expired_denom_pub_hash (
connection,
@@ -594,8 +595,12 @@ resolve_refreshes_reveal_denominations (struct MHD_Connection *connection,
TALER_EC_EXCHANGE_GENERIC_DENOMINATION_EXPIRED,
"REVEAL");
}
- if (now.abs_value_us < dks[i]->meta.start.abs_value_us)
+ if (GNUNET_TIME_absolute_is_future (dks[i]->meta.start))
{
+ struct GNUNET_TIME_Absolute now;
+
+ now = GNUNET_TIME_absolute_get ();
+ (void) GNUNET_TIME_round_abs (&now);
/* This denomination is not yet valid */
return TEH_RESPONSE_reply_expired_denom_pub_hash (
connection,