summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/taler-merchant-httpd_post-tips-ID-pickup.c')
-rw-r--r--src/backend/taler-merchant-httpd_post-tips-ID-pickup.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c b/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c
index fb560de6..da482cda 100644
--- a/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c
+++ b/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c
@@ -379,17 +379,18 @@ withdraw_cb (void *cls,
* @param cls closure, with our `struct PlanchetOperation *`
* @param hr HTTP response details
* @param eh handle to the exchange context
- * @param exchange_trusted true if this exchange is trusted by config
+ * @param ih internal handle to the exchange
*/
static void
do_withdraw (void *cls,
const struct TALER_EXCHANGE_HttpResponse *hr,
struct TALER_EXCHANGE_Handle *eh,
- bool exchange_trusted)
+ struct TMH_Exchange *ih)
{
struct PlanchetOperation *po = cls;
struct PickupContext *pc = po->pc;
+ (void) ih;
po->fo = NULL;
TMH_db->preflight (TMH_db->cls);
if (NULL == hr)
@@ -501,17 +502,18 @@ do_timeout (void *cls)
* @param cls closure, with our `struct PickupContext *`
* @param hr HTTP response details
* @param eh handle to the exchange context
- * @param exchange_trusted true if this exchange is trusted by config
+ * @param ih internal handle to the exchange
*/
static void
compute_total_requested (void *cls,
const struct TALER_EXCHANGE_HttpResponse *hr,
struct TALER_EXCHANGE_Handle *eh,
- bool exchange_trusted)
+ struct TMH_Exchange *ih)
{
struct PickupContext *pc = cls;
const struct TALER_EXCHANGE_Keys *keys;
+ (void) ih;
pc->fo = NULL;
stop_operations (pc); /* stops timeout job */
if (NULL == hr)