diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-11-21 14:56:46 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-11-21 14:56:46 +0100 |
commit | 9d43bf92c45e771afdada11851393e0a82a91078 (patch) | |
tree | f214c5fc48e8c4f2d9b88b6c65893c4cde731929 /src/exchangedb/pg_iterate_denominations.c | |
parent | 358388597835c364e9454a39d7161f06cbaac81c (diff) |
-doxygen
Diffstat (limited to 'src/exchangedb/pg_iterate_denominations.c')
-rw-r--r-- | src/exchangedb/pg_iterate_denominations.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/exchangedb/pg_iterate_denominations.c b/src/exchangedb/pg_iterate_denominations.c index d8a91f55..a3825768 100644 --- a/src/exchangedb/pg_iterate_denominations.c +++ b/src/exchangedb/pg_iterate_denominations.c @@ -26,8 +26,6 @@ #include "pg_helper.h" - - /** * Closure for #dominations_cb_helper() */ @@ -51,7 +49,7 @@ struct DenomsIteratorContext /** - * Helper function for #postgres_iterate_denominations(). + * Helper function for #TEH_PG_iterate_denominations(). * Calls the callback with each denomination key. * * @param cls a `struct DenomsIteratorContext` @@ -130,8 +128,8 @@ dominations_cb_helper (void *cls, enum GNUNET_DB_QueryStatus TEH_PG_iterate_denominations (void *cls, - TALER_EXCHANGEDB_DenominationsCallback cb, - void *cb_cls) + TALER_EXCHANGEDB_DenominationsCallback cb, + void *cb_cls) { struct PostgresClosure *pg = cls; struct GNUNET_PQ_QueryParam params[] = { @@ -143,7 +141,7 @@ TEH_PG_iterate_denominations (void *cls, .pg = pg }; - /* Used in #postgres_iterate_denominations() */ + /* Used in #postgres_iterate_denominations() */ PREPARE (pg, "select_denominations", "SELECT" |