summaryrefslogtreecommitdiff
path: root/src/backenddb
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-05-22 11:06:19 +0200
committerChristian Grothoff <christian@grothoff.org>2020-05-22 11:06:19 +0200
commit1e6adbf5d7f192e59a1b97697731be0491c3d75c (patch)
tree0212c4f6d138612d9be1979f8d72baea473b6215 /src/backenddb
parentb4fc637130072ed0e49c614d12688240e91713b0 (diff)
downloadmerchant-1e6adbf5d7f192e59a1b97697731be0491c3d75c.tar.gz
merchant-1e6adbf5d7f192e59a1b97697731be0491c3d75c.tar.bz2
merchant-1e6adbf5d7f192e59a1b97697731be0491c3d75c.zip
fix ftbfs
Diffstat (limited to 'src/backenddb')
-rw-r--r--src/backenddb/plugin_merchantdb_postgres.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c
index 874d33c9..df6207b3 100644
--- a/src/backenddb/plugin_merchantdb_postgres.c
+++ b/src/backenddb/plugin_merchantdb_postgres.c
@@ -4675,14 +4675,14 @@ RETRY:
* #TALER_EC_NONE upon success
*/
static enum TALER_ErrorCode
-postgres_authorize_tip_TR (void *cls,
- const char *justification,
- const json_t *extra,
- const struct TALER_Amount *amount,
- const struct TALER_ReservePrivateKeyP *reserve_priv,
- const char *exchange_url,
- struct GNUNET_TIME_Absolute *expiration,
- struct GNUNET_HashCode *tip_id)
+postgres_authorize_tip (void *cls,
+ const char *justification,
+ const json_t *extra,
+ const struct TALER_Amount *amount,
+ const struct TALER_ReservePrivateKeyP *reserve_priv,
+ const char *exchange_url,
+ struct GNUNET_TIME_Absolute *expiration,
+ struct GNUNET_HashCode *tip_id)
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {
@@ -7235,7 +7235,6 @@ libtaler_plugin_merchantdb_postgres_init (void *cls)
plugin->find_proof_by_wtid = &postgres_find_proof_by_wtid;
plugin->get_authorized_tip_amount = &postgres_get_authorized_tip_amount;
plugin->enable_tip_reserve_TR = &postgres_enable_tip_reserve_TR;
- plugin->authorize_tip_TR = &postgres_authorize_tip_TR;
plugin->lookup_tip_by_id = &postgres_lookup_tip_by_id;
plugin->pickup_tip_TR = &postgres_pickup_tip_TR;