aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_get_global_fees.c
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-03-31 13:50:32 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-03-31 13:50:32 +0200
commit6eed8917c37ad047ee95e964cd516d82aacac473 (patch)
tree5dedf24afa822f80325abbd407275f9de840b302 /src/exchangedb/pg_get_global_fees.c
parent9cce35d27027e1e72e44ac8965ae687d75f1c93d (diff)
downloadexchange-6eed8917c37ad047ee95e964cd516d82aacac473.tar.xz
fix exchangedb build errors
Diffstat (limited to 'src/exchangedb/pg_get_global_fees.c')
-rw-r--r--src/exchangedb/pg_get_global_fees.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/exchangedb/pg_get_global_fees.c b/src/exchangedb/pg_get_global_fees.c
index 0e1736bd4..e01eb2dab 100644
--- a/src/exchangedb/pg_get_global_fees.c
+++ b/src/exchangedb/pg_get_global_fees.c
@@ -121,11 +121,10 @@ global_fees_cb (void *cls,
}
-
enum GNUNET_DB_QueryStatus
TEH_PG_get_global_fees (void *cls,
- TALER_EXCHANGEDB_GlobalFeeCallback cb,
- void *cb_cls)
+ TALER_EXCHANGEDB_GlobalFeeCallback cb,
+ void *cb_cls)
{
struct PostgresClosure *pg = cls;
struct GNUNET_TIME_Timestamp date
@@ -144,7 +143,7 @@ TEH_PG_get_global_fees (void *cls,
.status = GNUNET_OK
};
- /* Used in #postgres_get_global_fees() */
+ /* Used in #postgres_get_global_fees() */
PREPARE (pg,
"get_global_fees",
"SELECT "
@@ -169,7 +168,3 @@ TEH_PG_get_global_fees (void *cls,
&global_fees_cb,
&gctx);
}
-
-
-
-