diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-02-13 22:01:02 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-02-13 22:01:02 +0100 |
commit | 2d6bce2dc0ded9fcb77caa1cafecd401216b7238 (patch) | |
tree | 7614abdaea0d86b8356f26e9be78bd5ba5dad1f9 /src/exchangedb/plugin_exchangedb_postgres.c | |
parent | c4dfd21ebe721959312cd52a7224fbbf84e75c4d (diff) |
set 'finished' to TRUE when KYC process is done (either way, successful or failure); should fix #8055, needs testing
Diffstat (limited to 'src/exchangedb/plugin_exchangedb_postgres.c')
-rw-r--r-- | src/exchangedb/plugin_exchangedb_postgres.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c index b21e5d62f..0de656987 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -81,6 +81,7 @@ #include "pg_get_drain_profit.h" #include "pg_get_purse_deposit.h" #include "pg_insert_contract.h" +#include "pg_insert_kyc_failure.h" #include "pg_select_contract.h" #include "pg_select_purse_merge.h" #include "pg_select_contract_by_purse.h" @@ -743,6 +744,8 @@ libtaler_plugin_exchangedb_postgres_init (void *cls) = &TEH_PG_begin_shard; plugin->abort_shard = &TEH_PG_abort_shard; + plugin->insert_kyc_failure + = &TEH_PG_insert_kyc_failure; plugin->complete_shard = &TEH_PG_complete_shard; plugin->release_revolving_shard |