summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_deposit.c
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-04-03 15:20:50 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-04-03 15:22:16 +0200
commit219f702926c61adedea9458e07a6936e76cfe13e (patch)
treec5bc1a952ac1cb024823921a6a52bb9db0399ccc /src/exchange/taler-exchange-httpd_deposit.c
parent41afe6fd675a6293a538d6523a46553650effc2a (diff)
downloadexchange-219f702926c61adedea9458e07a6936e76cfe13e.tar.gz
exchange-219f702926c61adedea9458e07a6936e76cfe13e.tar.bz2
exchange-219f702926c61adedea9458e07a6936e76cfe13e.zip
Faking the time.
Allow the user to pass a "now" value along the "/keys" request.
Diffstat (limited to 'src/exchange/taler-exchange-httpd_deposit.c')
-rw-r--r--src/exchange/taler-exchange-httpd_deposit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd_deposit.c b/src/exchange/taler-exchange-httpd_deposit.c
index 3e91218ce..2aaa3c745 100644
--- a/src/exchange/taler-exchange-httpd_deposit.c
+++ b/src/exchange/taler-exchange-httpd_deposit.c
@@ -274,7 +274,7 @@ verify_and_execute_deposit (struct MHD_Connection *connection,
}
/* check denomination */
- mks = TEH_KS_acquire ();
+ mks = TEH_KS_acquire (GNUNET_TIME_absolute_get ());
if (NULL == mks)
{
TALER_LOG_ERROR ("Lacking keys to operate\n");
@@ -479,7 +479,7 @@ TEH_DEPOSIT_handler_deposit (struct TEH_RequestHandler *rh,
}
/* check denomination exists and is valid */
- key_state = TEH_KS_acquire ();
+ key_state = TEH_KS_acquire (GNUNET_TIME_absolute_get ());
if (NULL == key_state)
{
TALER_LOG_ERROR ("Lacking keys to operate\n");