diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-02-12 14:39:54 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-02-12 14:39:54 +0100 |
commit | 923ff3126ec45d62e362e36e374c9fcd4dbe3d60 (patch) | |
tree | 140155b8c6852f449e4a7a3648b93e193bb4f8d6 /src/exchangedb/plugin_exchangedb_postgres.c | |
parent | 19132b67165d04bede03ba83e98359849e357536 (diff) |
-work on AML trigger logic
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 b201ef554..bbf061258 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -51,6 +51,7 @@ #include "pg_lookup_records_by_table.h" #include "pg_lookup_serial_by_table.h" #include "pg_select_account_merges_above_serial_id.h" +#include "pg_select_aml_threshold.h" #include "pg_select_all_purse_decisions_above_serial_id.h" #include "pg_select_purse.h" #include "pg_select_purse_deposits_above_serial_id.h" @@ -451,6 +452,8 @@ libtaler_plugin_exchangedb_postgres_init (void *cls) = &TEH_PG_select_account_merges_above_serial_id; plugin->select_all_purse_decisions_above_serial_id = &TEH_PG_select_all_purse_decisions_above_serial_id; + plugin->select_aml_threshold + = &TEH_PG_select_aml_threshold; plugin->select_purse = &TEH_PG_select_purse; plugin->select_purse_deposits_above_serial_id |