diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-06-23 13:39:18 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-07-29 12:18:43 +0200 |
commit | 908cb91c95b2fb52b5fa3bc31a6472187b84163b (patch) | |
tree | 781caf7a00d70b2d0ae3f730a80e82e74bf496a1 /src/exchangedb/plugin_exchangedb_postgres.c | |
parent | 61f3336601d6fd6fdcf8abfc052902e5404d903e (diff) |
-implement GET "/aml/$PUB/attributes/$H_PAYTO"
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 2b699034d..fe4dbd27b 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -56,6 +56,7 @@ #include "pg_select_account_merges_above_serial_id.h" #include "pg_select_all_purse_decisions_above_serial_id.h" #include "pg_select_purse.h" +#include "pg_select_aml_attributes.h" #include "pg_trigger_kyc_rule_for_account.h" #include "pg_select_purse_deposits_above_serial_id.h" #include "pg_select_purse_merges_above_serial_id.h" @@ -730,6 +731,8 @@ libtaler_plugin_exchangedb_postgres_init (void *cls) = &TEH_PG_select_aml_decisions; plugin->insert_signkey_revocation = &TEH_PG_insert_signkey_revocation; + plugin->select_aml_attributes + = &TEH_PG_select_aml_attributes; plugin->lookup_signkey_revocation = &TEH_PG_lookup_signkey_revocation; plugin->lookup_denomination_key |