summaryrefslogtreecommitdiff
path: root/src/backenddb/pg_update_deposit_confirmation_status.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-01-26 18:10:06 +0100
committerChristian Grothoff <christian@grothoff.org>2024-01-26 18:25:30 +0100
commit1e0d328f91e4aa2ad783725671bb20d3e8cc1ef4 (patch)
tree55377beef0ab40dd092feeb57a29c370d3cec4a7 /src/backenddb/pg_update_deposit_confirmation_status.c
parent0b85857fbae788fdec37b3ead0d1bbe7b4a3ea44 (diff)
downloadmerchant-1e0d328f91e4aa2ad783725671bb20d3e8cc1ef4.tar.gz
merchant-1e0d328f91e4aa2ad783725671bb20d3e8cc1ef4.tar.bz2
merchant-1e0d328f91e4aa2ad783725671bb20d3e8cc1ef4.zip
-fix check
Diffstat (limited to 'src/backenddb/pg_update_deposit_confirmation_status.c')
-rw-r--r--src/backenddb/pg_update_deposit_confirmation_status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backenddb/pg_update_deposit_confirmation_status.c b/src/backenddb/pg_update_deposit_confirmation_status.c
index 61bda33b..0bc327cd 100644
--- a/src/backenddb/pg_update_deposit_confirmation_status.c
+++ b/src/backenddb/pg_update_deposit_confirmation_status.c
@@ -30,13 +30,13 @@ enum GNUNET_DB_QueryStatus
TMH_PG_update_deposit_confirmation_status (
void *cls,
uint64_t deposit_serial,
- struct GNUNET_TIME_Absolute future_retry,
+ struct GNUNET_TIME_Timestamp future_retry,
const char *emsg)
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {
GNUNET_PQ_query_param_uint64 (&deposit_serial),
- GNUNET_PQ_query_param_absolute_time (&future_retry),
+ GNUNET_PQ_query_param_timestamp (&future_retry),
GNUNET_PQ_query_param_string (emsg),
GNUNET_PQ_query_param_end
};