commit 3a8f74247916bcf9168574e14a6fa281ce1eadb5
parent 7f78f64b6f289dc65656d6cabdfda035899a8f8c
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 13 Feb 2025 16:36:07 +0100
remove unnecessary donau phase
Diffstat:
1 file changed, 0 insertions(+), 21 deletions(-)
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c
@@ -635,9 +635,6 @@ struct OrderContext
ORDER_PHASE_PARSE_REQUEST,
ORDER_PHASE_PARSE_ORDER,
ORDER_PHASE_PARSE_CHOICES,
-#ifdef HAVE_DONAU_DONAU_SERVICE_H
- ORDER_PHASE_PARSE_DONAU,
-#endif
ORDER_PHASE_MERGE_INVENTORY,
ORDER_PHASE_ADD_PAYMENT_DETAILS,
ORDER_PHASE_SET_EXCHANGES,
@@ -3338,19 +3335,6 @@ parse_order (struct OrderContext *oc)
}
-#ifdef HAVE_DONAU_DONAU_SERVICE_H
-
-static void
-parse_donau_instances (struct OrderContext *oc)
-{
- /* FIXME-#9059: not yet implemented! */
- return;
-}
-
-
-#endif
-
-
/**
* Parse contract choices. Upon success, continue
* processing with merge_inventory().
@@ -3980,11 +3964,6 @@ TMH_private_post_orders (
case ORDER_PHASE_PARSE_CHOICES:
parse_choices (oc);
break;
-#ifdef HAVE_DONAU_DONAU_SERVICE_H
- case ORDER_PHASE_PARSE_DONAU:
- parse_donau_instances (oc);
- break;
-#endif
case ORDER_PHASE_MERGE_INVENTORY:
merge_inventory (oc);
break;