summaryrefslogtreecommitdiff
path: root/src/auditordb/plugin_auditordb_postgres.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-11-02 12:25:42 +0100
committerChristian Grothoff <christian@grothoff.org>2022-11-02 12:25:42 +0100
commit34f46382f0c0afc0babf5b7cbdfd83869b620c33 (patch)
tree2be6eba40af40419464134f3c97e61dfd4fa45d5 /src/auditordb/plugin_auditordb_postgres.c
parent821c87ccbddbb7b0d0896f350de0a671f210ae40 (diff)
downloadexchange-34f46382f0c0afc0babf5b7cbdfd83869b620c33.tar.gz
exchange-34f46382f0c0afc0babf5b7cbdfd83869b620c33.tar.bz2
exchange-34f46382f0c0afc0babf5b7cbdfd83869b620c33.zip
skeleton logic for new auditordb functions
Diffstat (limited to 'src/auditordb/plugin_auditordb_postgres.c')
-rw-r--r--src/auditordb/plugin_auditordb_postgres.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/auditordb/plugin_auditordb_postgres.c b/src/auditordb/plugin_auditordb_postgres.c
index 64c7b5033..5ed01e5d2 100644
--- a/src/auditordb/plugin_auditordb_postgres.c
+++ b/src/auditordb/plugin_auditordb_postgres.c
@@ -517,23 +517,23 @@ libtaler_plugin_auditordb_postgres_init (void *cls)
plugin->insert_predicted_result
= &TAH_PG_insert_predicted_result;
plugin->get_purse_info
- = &TEH_PG_get_purse_info;
+ = &TAH_PG_get_purse_info;
plugin->delete_purse_info
- = &TEH_PG_delete_purse_info;
+ = &TAH_PG_delete_purse_info;
plugin->update_purse_info
- = &TEH_PG_update_purse_info;
+ = &TAH_PG_update_purse_info;
plugin->insert_purse_info
- = &TEH_PG_insert_purse_info;
+ = &TAH_PG_insert_purse_info;
plugin->get_purse_summary
- = &TEH_PG_get_purse_summary;
+ = &TAH_PG_get_purse_summary;
plugin->select_purse_expired
- = &TEH_PG_select_purse_expired;
+ = &TAH_PG_select_purse_expired;
plugin->insert_purse_summary
- = &TEH_PG_insert_purse_summary;
+ = &TAH_PG_insert_purse_summary;
plugin->update_purse_summary
- = &TEH_PG_update_purse_summary;
+ = &TAH_PG_update_purse_summary;
return plugin;
}