aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_update_kyc_process_by_row.c
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2024-08-03 18:51:46 +0200
committerChristian Grothoff <grothoff@gnunet.org>2024-08-03 18:51:46 +0200
commit12b87cf4f96005a78dfb33c2cb69801c72f319b5 (patch)
tree093e73bcf7ed4a73b107b7d6d905d1c0f8de6e63 /src/exchangedb/pg_update_kyc_process_by_row.c
parent830ebef2ea959ccbec0d62a04b947a020ff278c8 (diff)
fix KYC long-polling logic
Diffstat (limited to 'src/exchangedb/pg_update_kyc_process_by_row.c')
-rw-r--r--src/exchangedb/pg_update_kyc_process_by_row.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/exchangedb/pg_update_kyc_process_by_row.c b/src/exchangedb/pg_update_kyc_process_by_row.c
index 42cc094f2..ec0ef24bc 100644
--- a/src/exchangedb/pg_update_kyc_process_by_row.c
+++ b/src/exchangedb/pg_update_kyc_process_by_row.c
@@ -98,13 +98,11 @@ TEH_PG_update_kyc_process_by_row (
if (GNUNET_TIME_absolute_is_future (expiration))
{
enum GNUNET_DB_QueryStatus qs2;
-#if FIXME
struct TALER_KycCompletedEventP rep = {
.header.size = htons (sizeof (rep)),
.header.type = htons (TALER_DBEVENT_EXCHANGE_KYC_COMPLETED),
.h_payto = *h_payto
};
-#endif
uint32_t trigger_type = 1;
struct GNUNET_PQ_QueryParam params2[] = {
GNUNET_PQ_query_param_auto_from_type (h_payto),
@@ -112,14 +110,10 @@ TEH_PG_update_kyc_process_by_row (
GNUNET_PQ_query_param_end
};
-#if FIXME
- /* We used to do h_payto, now we need the
- account access token! */
GNUNET_PQ_event_notify (pg->conn,
&rep.header,
NULL,
0);
-#endif
PREPARE (pg,
"alert_kyc_status_change",
"INSERT INTO kyc_alerts"