gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-merchant] branch master updated (1d5da1f -> f26664f)


From: gnunet
Subject: [taler-merchant] branch master updated (1d5da1f -> f26664f)
Date: Thu, 15 Oct 2020 13:05:36 +0200

This is an automated email from the git hooks/post-receive script.

ms pushed a change to branch master
in repository merchant.

    from 1d5da1f  minor fixes
     new 8718ecb  Doxygen fixes
     new 875611b  Doxygen fixes
     new faff9c0  Doxygen fixes
     new ef870b5  Doxygen fixes
     new 2793afe  Doxygen fixes
     new 3ac2a74  Doxygen fixes
     new 4268220  Doxygen fixes
     new f26664f  Doxygen fixes

The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/backenddb/merchantdb_plugin.c                  | 12 ----
 src/lib/merchant_api_delete_instance.c             |  4 +-
 src/lib/merchant_api_delete_order.c                |  2 +-
 src/lib/merchant_api_delete_product.c              |  2 +-
 src/lib/merchant_api_delete_reserve.c              |  7 +--
 src/lib/merchant_api_get_config.c                  |  2 +-
 src/lib/merchant_api_get_instance.c                |  2 +-
 src/lib/merchant_api_get_instances.c               |  2 +-
 src/lib/merchant_api_get_orders.c                  |  2 +-
 src/lib/merchant_api_get_product.c                 |  2 +-
 src/lib/merchant_api_get_products.c                |  2 +-
 src/lib/merchant_api_get_reserve.c                 |  2 +-
 src/lib/merchant_api_get_reserves.c                |  2 +-
 src/lib/merchant_api_get_tips.c                    |  2 +-
 src/lib/merchant_api_get_transfers.c               |  2 +-
 src/lib/merchant_api_lock_product.c                |  2 +-
 src/lib/merchant_api_merchant_get_order.c          |  2 +-
 src/lib/merchant_api_merchant_get_tip.c            |  2 +-
 src/lib/merchant_api_patch_instance.c              |  2 +-
 src/lib/merchant_api_patch_order_forget.c          |  2 +-
 src/lib/merchant_api_patch_product.c               |  2 +-
 src/testing/testing_api_cmd_get_transfers.c        | 13 ----
 src/testing/testing_api_cmd_lock_product.c         | 12 ----
 src/testing/testing_api_cmd_merchant_get_order.c   | 38 -----------
 src/testing/testing_api_cmd_merchant_get_tip.c     | 23 -------
 src/testing/testing_api_cmd_patch_instance.c       | 20 ------
 src/testing/testing_api_cmd_patch_product.c        | 26 --------
 src/testing/testing_api_cmd_pay_order.c            | 16 -----
 src/testing/testing_api_cmd_post_instances.c       | 32 ----------
 src/testing/testing_api_cmd_post_orders.c          | 48 --------------
 src/testing/testing_api_cmd_post_orders_paid.c     | 10 ---
 src/testing/testing_api_cmd_post_products.c        | 35 -----------
 src/testing/testing_api_cmd_post_reserves.c        | 18 ------
 src/testing/testing_api_cmd_post_transfers.c       | 18 ------
 src/testing/testing_api_cmd_refund_order.c         | 12 ----
 src/testing/testing_api_cmd_tip_authorize.c        | 73 ----------------------
 src/testing/testing_api_cmd_tip_pickup.c           | 38 -----------
 src/testing/testing_api_cmd_wallet_get_order.c     | 12 ----
 src/testing/testing_api_cmd_wallet_get_tip.c       | 19 ------
 .../testing_api_cmd_wallet_post_orders_refund.c    | 14 -----
 src/testing/testing_api_helpers.c                  | 19 ------
 src/testing/testing_api_trait_claim_nonce.c        | 19 +-----
 src/testing/testing_api_trait_hash.c               | 37 -----------
 src/testing/testing_api_trait_merchant_sig.c       | 19 ------
 src/testing/testing_api_trait_planchet.c           | 17 -----
 src/testing/testing_api_trait_refund_entry.c       | 17 -----
 src/testing/testing_api_trait_string.c             | 50 ---------------
 47 files changed, 24 insertions(+), 690 deletions(-)

diff --git a/src/backenddb/merchantdb_plugin.c 
b/src/backenddb/merchantdb_plugin.c
index 1c1d891..c08906a 100644
--- a/src/backenddb/merchantdb_plugin.c
+++ b/src/backenddb/merchantdb_plugin.c
@@ -26,13 +26,6 @@
 #include <ltdl.h>
 
 
-/**
- * Initialize the plugin.
- *
- * @param[in,out] cfg configuration to use
- * @param reset_db should the DB be reset on load?
- * @return #GNUNET_OK on success
- */
 struct TALER_MERCHANTDB_Plugin *
 TALER_MERCHANTDB_plugin_load (const struct GNUNET_CONFIGURATION_Handle *cfg,
                               bool reset_db)
@@ -85,11 +78,6 @@ TALER_MERCHANTDB_plugin_load (const struct 
GNUNET_CONFIGURATION_Handle *cfg,
 }
 
 
-/**
- * Shutdown the plugin.
- *
- * @param plugin the plugin to unload
- */
 void
 TALER_MERCHANTDB_plugin_unload (struct TALER_MERCHANTDB_Plugin *plugin)
 {
diff --git a/src/lib/merchant_api_delete_instance.c 
b/src/lib/merchant_api_delete_instance.c
index 7dab16d..03b376e 100644
--- a/src/lib/merchant_api_delete_instance.c
+++ b/src/lib/merchant_api_delete_instance.c
@@ -116,9 +116,9 @@ handle_delete_instance_finished (void *cls,
  * @param backend_url HTTP base URL for the backend
  * @param instance_id which instance should be deleted
  * @param purge purge instead of just deleting
- * @param instances_cb function to call with the
+ * @param cb function to call with the
  *        backend's return
- * @param instances_cb_cls closure for @a config_cb
+ * @param cb_cls closure for @a config_cb
  * @return the instances handle; NULL upon error
  */
 static struct TALER_MERCHANT_InstanceDeleteHandle *
diff --git a/src/lib/merchant_api_delete_order.c 
b/src/lib/merchant_api_delete_order.c
index 40f4f95..4651fcf 100644
--- a/src/lib/merchant_api_delete_order.c
+++ b/src/lib/merchant_api_delete_order.c
@@ -67,7 +67,7 @@ struct TALER_MERCHANT_OrderDeleteHandle
  *
  * @param cls the `struct TALER_MERCHANT_OrderDeleteHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_delete_order_finished (void *cls,
diff --git a/src/lib/merchant_api_delete_product.c 
b/src/lib/merchant_api_delete_product.c
index def4de7..196ec09 100644
--- a/src/lib/merchant_api_delete_product.c
+++ b/src/lib/merchant_api_delete_product.c
@@ -69,7 +69,7 @@ struct TALER_MERCHANT_ProductDeleteHandle
  *
  * @param cls the `struct TALER_MERCHANT_ProductDeleteHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_delete_product_finished (void *cls,
diff --git a/src/lib/merchant_api_delete_reserve.c 
b/src/lib/merchant_api_delete_reserve.c
index c46d8ac..22c0aa5 100644
--- a/src/lib/merchant_api_delete_reserve.c
+++ b/src/lib/merchant_api_delete_reserve.c
@@ -70,7 +70,7 @@ struct TALER_MERCHANT_ReserveDeleteHandle
  *
  * @param cls the `struct TALER_MERCHANT_InstanceDeleteHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_delete_reserve_finished (void *cls,
@@ -115,9 +115,8 @@ handle_delete_reserve_finished (void *cls,
  * @param backend_url HTTP base URL for the backend
  * @param instance_id which instance should be deleted
  * @param purge purge instead of just deleting
- * @param instances_cb function to call with the
- *        backend's return
- * @param instances_cb_cls closure for @a config_cb
+ * @param cb function to call with the backend's return
+ * @param cb_cls closure for @a config_cb
  * @return the instances handle; NULL upon error
  */
 static struct TALER_MERCHANT_ReserveDeleteHandle *
diff --git a/src/lib/merchant_api_get_config.c 
b/src/lib/merchant_api_get_config.c
index 022364d..bbf1932 100644
--- a/src/lib/merchant_api_get_config.c
+++ b/src/lib/merchant_api_get_config.c
@@ -80,7 +80,7 @@ struct TALER_MERCHANT_ConfigGetHandle
  *
  * @param cls the `struct TALER_MERCHANT_ConfigGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_config_finished (void *cls,
diff --git a/src/lib/merchant_api_get_instance.c 
b/src/lib/merchant_api_get_instance.c
index 4ba3c86..35250bf 100644
--- a/src/lib/merchant_api_get_instance.c
+++ b/src/lib/merchant_api_get_instance.c
@@ -69,7 +69,7 @@ struct TALER_MERCHANT_InstanceGetHandle
  *
  * @param cls the `struct TALER_MERCHANT_InstanceGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_get_instance_finished (void *cls,
diff --git a/src/lib/merchant_api_get_instances.c 
b/src/lib/merchant_api_get_instances.c
index b7a8240..ba2e560 100644
--- a/src/lib/merchant_api_get_instances.c
+++ b/src/lib/merchant_api_get_instances.c
@@ -148,7 +148,7 @@ parse_instances (const json_t *ia,
  *
  * @param cls the `struct TALER_MERCHANT_InstancesGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_instances_finished (void *cls,
diff --git a/src/lib/merchant_api_get_orders.c 
b/src/lib/merchant_api_get_orders.c
index 11be14d..ef85398 100644
--- a/src/lib/merchant_api_get_orders.c
+++ b/src/lib/merchant_api_get_orders.c
@@ -135,7 +135,7 @@ parse_orders (const json_t *ia,
  *
  * @param cls the `struct TALER_MERCHANT_OrdersGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_get_orders_finished (void *cls,
diff --git a/src/lib/merchant_api_get_product.c 
b/src/lib/merchant_api_get_product.c
index e1c5016..076a694 100644
--- a/src/lib/merchant_api_get_product.c
+++ b/src/lib/merchant_api_get_product.c
@@ -69,7 +69,7 @@ struct TALER_MERCHANT_ProductGetHandle
  *
  * @param cls the `struct TALER_MERCHANT_ProductGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_get_product_finished (void *cls,
diff --git a/src/lib/merchant_api_get_products.c 
b/src/lib/merchant_api_get_products.c
index 7a74320..47d4500 100644
--- a/src/lib/merchant_api_get_products.c
+++ b/src/lib/merchant_api_get_products.c
@@ -123,7 +123,7 @@ parse_products (const json_t *ia,
  *
  * @param cls the `struct TALER_MERCHANT_ProductsGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_get_products_finished (void *cls,
diff --git a/src/lib/merchant_api_get_reserve.c 
b/src/lib/merchant_api_get_reserve.c
index 1145d57..31f241d 100644
--- a/src/lib/merchant_api_get_reserve.c
+++ b/src/lib/merchant_api_get_reserve.c
@@ -70,7 +70,7 @@ struct TALER_MERCHANT_ReserveGetHandle
  *
  * @param cls the `struct TALER_MERCHANT_ReserveGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_reserve_get_finished (void *cls,
diff --git a/src/lib/merchant_api_get_reserves.c 
b/src/lib/merchant_api_get_reserves.c
index 0dea6f5..b64d76d 100644
--- a/src/lib/merchant_api_get_reserves.c
+++ b/src/lib/merchant_api_get_reserves.c
@@ -70,7 +70,7 @@ struct TALER_MERCHANT_ReservesGetHandle
  *
  * @param cls the `struct TALER_MERCHANT_ReservesGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_reserves_get_finished (void *cls,
diff --git a/src/lib/merchant_api_get_tips.c b/src/lib/merchant_api_get_tips.c
index eb174f0..ada1595 100644
--- a/src/lib/merchant_api_get_tips.c
+++ b/src/lib/merchant_api_get_tips.c
@@ -127,7 +127,7 @@ parse_tips (const json_t *ia,
  *
  * @param cls the `struct TALER_MERCHANT_TipsGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_get_tips_finished (void *cls,
diff --git a/src/lib/merchant_api_get_transfers.c 
b/src/lib/merchant_api_get_transfers.c
index 95bd2d0..a9fc5fd 100644
--- a/src/lib/merchant_api_get_transfers.c
+++ b/src/lib/merchant_api_get_transfers.c
@@ -70,7 +70,7 @@ struct TALER_MERCHANT_GetTransfersHandle
  *
  * @param cls the `struct TALER_MERCHANT_GetTransfersHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_transfers_get_finished (void *cls,
diff --git a/src/lib/merchant_api_lock_product.c 
b/src/lib/merchant_api_lock_product.c
index eb6b9c1..fba0a02 100644
--- a/src/lib/merchant_api_lock_product.c
+++ b/src/lib/merchant_api_lock_product.c
@@ -77,7 +77,7 @@ struct TALER_MERCHANT_ProductLockHandle
  *
  * @param cls the `struct TALER_MERCHANT_ProductLockHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_lock_product_finished (void *cls,
diff --git a/src/lib/merchant_api_merchant_get_order.c 
b/src/lib/merchant_api_merchant_get_order.c
index 007d419..b09b39e 100644
--- a/src/lib/merchant_api_merchant_get_order.c
+++ b/src/lib/merchant_api_merchant_get_order.c
@@ -355,7 +355,7 @@ handle_paid (struct TALER_MERCHANT_OrderMerchantGetHandle 
*omgh,
  *
  * @param cls the `struct TALER_MERCHANT_OrderMerchantGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, should be NULL
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_merchant_order_get_finished (void *cls,
diff --git a/src/lib/merchant_api_merchant_get_tip.c 
b/src/lib/merchant_api_merchant_get_tip.c
index 6efa1e5..deb6272 100644
--- a/src/lib/merchant_api_merchant_get_tip.c
+++ b/src/lib/merchant_api_merchant_get_tip.c
@@ -124,7 +124,7 @@ parse_pickups (const json_t *pa,
  *
  * @param cls the `struct TALER_MERCHANT_TipMerchantGetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_merchant_tip_get_finished (void *cls,
diff --git a/src/lib/merchant_api_patch_instance.c 
b/src/lib/merchant_api_patch_instance.c
index 157714c..d63aef7 100644
--- a/src/lib/merchant_api_patch_instance.c
+++ b/src/lib/merchant_api_patch_instance.c
@@ -77,7 +77,7 @@ struct TALER_MERCHANT_InstancePatchHandle
  *
  * @param cls the `struct TALER_MERCHANT_InstancePatchHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_patch_instance_finished (void *cls,
diff --git a/src/lib/merchant_api_patch_order_forget.c 
b/src/lib/merchant_api_patch_order_forget.c
index a006c42..1a7a6c6 100644
--- a/src/lib/merchant_api_patch_order_forget.c
+++ b/src/lib/merchant_api_patch_order_forget.c
@@ -77,7 +77,7 @@ struct TALER_MERCHANT_OrderForgetHandle
  *
  * @param cls the `struct TALER_MERCHANT_OrderForgetHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_forget_finished (void *cls,
diff --git a/src/lib/merchant_api_patch_product.c 
b/src/lib/merchant_api_patch_product.c
index 3a9be15..4d456c5 100644
--- a/src/lib/merchant_api_patch_product.c
+++ b/src/lib/merchant_api_patch_product.c
@@ -77,7 +77,7 @@ struct TALER_MERCHANT_ProductPatchHandle
  *
  * @param cls the `struct TALER_MERCHANT_ProductPatchHandle`
  * @param response_code HTTP response code, 0 on error
- * @param json response body, NULL if not in JSON
+ * @param response response body, NULL if not in JSON
  */
 static void
 handle_patch_product_finished (void *cls,
diff --git a/src/testing/testing_api_cmd_get_transfers.c 
b/src/testing/testing_api_cmd_get_transfers.c
index c6dc19c..19e198a 100644
--- a/src/testing/testing_api_cmd_get_transfers.c
+++ b/src/testing/testing_api_cmd_get_transfers.c
@@ -302,19 +302,6 @@ get_transfers_cleanup (void *cls,
 }
 
 
-/**
- * Define a GET /transfers CMD.
- *
- * @param label command label.
- * @param merchant_url base URL of the backend serving the
- *        "refund increase" request.
- * @param payto_uri payto URI to filter by, NULL for no filter
- * @param http_code expected HTTP response code
- * @param ... NULL-terminated list of labels (const char *) of
- *        transfer (commands) we expect to be returned in the list
- *        (assuming @a http_code is #MHD_HTTP_OK)
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_get_transfers (const char *label,
                                           const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_lock_product.c 
b/src/testing/testing_api_cmd_lock_product.c
index 070a6f8..d99c25e 100644
--- a/src/testing/testing_api_cmd_lock_product.c
+++ b/src/testing/testing_api_cmd_lock_product.c
@@ -192,18 +192,6 @@ lock_product_traits (void *cls,
 }
 
 
-/**
- * Define a "LOCK /products/$ID" CMD.
- *
- * @param label command label.
- * @param merchant_url base URL of the merchant serving the
- *        LOCK /product request.
- * @param product_id the ID of the product to lock.
- * @param duration how long the lock should last.
- * @param quantity how money units to lock.
- * @param http_status expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_lock_product (
   const char *label,
diff --git a/src/testing/testing_api_cmd_merchant_get_order.c 
b/src/testing/testing_api_cmd_merchant_get_order.c
index b9ee013..56162b2 100644
--- a/src/testing/testing_api_cmd_merchant_get_order.c
+++ b/src/testing/testing_api_cmd_merchant_get_order.c
@@ -604,21 +604,6 @@ merchant_get_order_cleanup (void *cls,
 }
 
 
-/**
- * Define a GET /private/orders/$ORDER_ID CMD.
- *
- * @param label the command label
- * @param merchant_url base URL of the merchant which will
- *        serve the request.
- * @param order_reference reference to a command that created an order.
- * @param osc expected order status code
- * @param refunded whether the order has been refunded.
- * @param http_status expected HTTP response code for the request.
- * @param ... NULL-terminated list of labels (const char *) of
- *        refunds (commands) we expect to be aggregated in the transfer
- *        (assuming @a http_code is #MHD_HTTP_OK). If @e refunded is false,
- *        this parameter is ignored.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_get_order (const char *label,
                                       const char *merchant_url,
@@ -663,29 +648,6 @@ TALER_TESTING_cmd_merchant_get_order (const char *label,
 }
 
 
-/**
- * Define a GET /private/orders/$ORDER_ID CMD.
- *
- * @param label the command label
- * @param merchant_url base URL of the merchant which will
- *        serve the request.
- * @param order_reference reference to a command that created an order.
- * @param osc expected order status
- * @param wired whether the order has been wired or not.
- * @param transfers NULL-terminated list of labels (const char *) of
- *        wire transfers (commands) we expect to be aggregated in the order
- *        (assuming @a http_code is #MHD_HTTP_OK). If @e paid is fale, this
- *        parameter is ignored.
- * @param refunded whether the order has been refunded.
- * @param refunds NULL-terminated list of labels (const char *) of
- *        refunds (commands) we expect to be aggregated in the order
- *        (assuming @a http_code is #MHD_HTTP_OK). If @e refunded is false,
- *        this parameter is ignored.
- * @param forgets a NULL-terminated list of references to forget commands
- *        that apply to the order we are querying. If NULL, this is
- *        interpreted as no forgets are expected.
- * @param http_status expected HTTP response code for the request.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_get_order2 (const char *label,
                                        const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_merchant_get_tip.c 
b/src/testing/testing_api_cmd_merchant_get_tip.c
index f1d79ee..5d0ba00 100644
--- a/src/testing/testing_api_cmd_merchant_get_tip.c
+++ b/src/testing/testing_api_cmd_merchant_get_tip.c
@@ -308,15 +308,6 @@ merchant_get_tip_cleanup (void *cls,
 }
 
 
-/**
- * Define a GET /private/tips/$TIP_IDE CMD.
- *
- * @param label the command label
- * @param merchant_url base URL of the merchant which will
- *        serve the request.
- * @param tip_reference reference to a command that created a tip.
- * @param http_status expected HTTP response code for the request.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_get_tip (const char *label,
                                     const char *merchant_url,
@@ -342,20 +333,6 @@ TALER_TESTING_cmd_merchant_get_tip (const char *label,
 }
 
 
-/**
- * Define a GET /private/tips/$TIP_ID CMD.
- *
- * @param label the command label
- * @param merchant_url base URL of the merchant which will
- *        serve the request.
- * @param tip_reference reference to a command that created a tip.
- * @param pickup_refs a NULL-terminated list of pickup commands
- *        associated with the tip.
- * @param http_status expected HTTP response code for the request.
- * @param ... NULL-terminated list of labels (const char *) of
- *        pickup (commands) we expect to be returned in the list
- *        (assuming @a http_code is #MHD_HTTP_OK)
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_get_tip_with_pickups (const char *label,
                                                  const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_patch_instance.c 
b/src/testing/testing_api_cmd_patch_instance.c
index eb09c02..5bb5548 100644
--- a/src/testing/testing_api_cmd_patch_instance.c
+++ b/src/testing/testing_api_cmd_patch_instance.c
@@ -263,26 +263,6 @@ patch_instance_cleanup (void *cls,
 }
 
 
-/**
- * Define a "PATCH /instances/$ID" CMD.
- *
- * @param label command label.
- * @param merchant_url base URL of the merchant serving the
- *        PATCH /instance request.
- * @param instance_id the ID of the instance to query
- * @param payto_uris_length length of the @a accounts array
- * @param payto_uris URIs of the bank accounts of the merchant instance
- * @param name name of the merchant instance
- * @param address physical address of the merchant instance
- * @param jurisdiction jurisdiction of the merchant instance
- * @param default_max_wire_fee default maximum wire fee merchant is willing to 
fully pay
- * @param default_wire_fee_amortization default amortization factor for excess 
wire fees
- * @param default_max_deposit_fee default maximum deposit fee merchant is 
willing to pay
- * @param default_wire_transfer_delay default wire transfer delay merchant 
will ask for
- * @param default_pay_delay default validity period for offers merchant makes
- * @param http_status expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_patch_instance (
   const char *label,
diff --git a/src/testing/testing_api_cmd_patch_product.c 
b/src/testing/testing_api_cmd_patch_product.c
index 29c8c18..87e63a4 100644
--- a/src/testing/testing_api_cmd_patch_product.c
+++ b/src/testing/testing_api_cmd_patch_product.c
@@ -247,32 +247,6 @@ patch_product_cleanup (void *cls,
 }
 
 
-/**
- * Define a "PATCH /products/$ID" CMD.
- *
- * @param label command label.
- * @param merchant_url base URL of the merchant serving the
- *        PATCH /product request.
- * @param product_id the ID of the product to query
- * @param description description of the product
- * @param description_i18n Map from IETF BCP 47 language tags to localized 
descriptions
- * @param unit unit in which the product is measured (liters, kilograms, 
packages, etc.)
- * @param price the price for one @a unit of the product, zero is used to 
imply that
- *              this product is not sold separately or that the price is not 
fixed and
- *              must be supplied by the front-end.  If non-zero, price must 
include
- *              applicable taxes.
- * @param image base64-encoded product image
- * @param taxes list of taxes paid by the merchant
- * @param total_stock in @a units, -1 to indicate "infinite" (i.e. electronic 
books)
- * @param total_lost in @a units, must be larger than previous values, and may
- *               not exceed total_stock minus total_sold; if it does, the 
transaction
- *               will fail with a #MHD_HTTP_CONFLICT HTTP status code
- * @param address where the product is in stock
- * @param next_restock when the next restocking is expected to happen, 0 for 
unknown,
- *                     #GNUNET_TIME_UNIT_FOREVER_ABS for 'never'.
- * @param http_status expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_patch_product (
   const char *label,
diff --git a/src/testing/testing_api_cmd_pay_order.c 
b/src/testing/testing_api_cmd_pay_order.c
index 64cb32a..0efa9b4 100644
--- a/src/testing/testing_api_cmd_pay_order.c
+++ b/src/testing/testing_api_cmd_pay_order.c
@@ -479,22 +479,6 @@ pay_traits (void *cls,
 }
 
 
-/**
- * Make a "pay" test command.
- *
- * @param label command label.
- * @param merchant_url merchant base url
- * @param http_status expected HTTP response code.
- * @param proposal_reference the proposal whose payment status
- *        is going to be checked.
- * @param coin_reference reference to any command which is able
- *        to provide coins to use for paying.
- * @param amount_with_fee amount to pay, including the deposit
- *        fee
- * @param amount_without_fee amount to pay, no fees included.
- * @param session_id the session id to use for the payment (can be NULL).
- * @return the command
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_pay_order (const char *label,
                                       const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_post_instances.c 
b/src/testing/testing_api_cmd_post_instances.c
index 6c21b4d..bea5cfb 100644
--- a/src/testing/testing_api_cmd_post_instances.c
+++ b/src/testing/testing_api_cmd_post_instances.c
@@ -266,26 +266,6 @@ post_instances_cleanup (void *cls,
 }
 
 
-/**
- * Define a "POST /instances" CMD.
- *
- * @param label command label.
- * @param merchant_url base URL of the merchant serving the
- *        POST /instances request.
- * @param instance_id the ID of the instance to query
- * @param payto_uris_length length of the @a accounts array
- * @param payto_uris URIs of the bank accounts of the merchant instance
- * @param name name of the merchant instance
- * @param address physical address of the merchant instance
- * @param jurisdiction jurisdiction of the merchant instance
- * @param default_max_wire_fee default maximum wire fee merchant is willing to 
fully pay
- * @param default_wire_fee_amortization default amortization factor for excess 
wire fees
- * @param default_max_deposit_fee default maximum deposit fee merchant is 
willing to pay
- * @param default_wire_transfer_delay default wire transfer delay merchant 
will ask for
- * @param default_pay_delay default validity period for offers merchant makes
- * @param http_status expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_instances2 (
   const char *label,
@@ -341,18 +321,6 @@ TALER_TESTING_cmd_merchant_post_instances2 (
 }
 
 
-/**
- * Define a "POST /instances" CMD, simple version
- *
- * @param label command label.
- * @param merchant_url base URL of the merchant serving the
- *        POST /instances request.
- * @param instance_id the ID of the instance to create
- * @param payto_uri payment URI to use
- * @param currency currency to use for default fees
- * @param http_status expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_instances (const char *label,
                                            const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_post_orders.c 
b/src/testing/testing_api_cmd_post_orders.c
index f7a8dbb..a7ecc1c 100644
--- a/src/testing/testing_api_cmd_post_orders.c
+++ b/src/testing/testing_api_cmd_post_orders.c
@@ -679,19 +679,6 @@ make_order_json (const char *order_id,
 }
 
 
-/**
- * Make the "proposal" command AVOIDING claiming the order.
- *
- * @param label command label
- * @param merchant_url base URL of the merchant serving
- *        the proposal request.
- * @param http_status expected HTTP status.
- * @param order_id the name of the order to add.
- * @param refund_deadline the deadline for refunds on this order.
- * @param pay_deadline the deadline for payment on this order.
- * @param amount the amount this order is for.
- * @return the command
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_orders_no_claim (const char *label,
                                                  const char *merchant_url,
@@ -729,19 +716,6 @@ TALER_TESTING_cmd_merchant_post_orders_no_claim (const 
char *label,
 }
 
 
-/**
- * Make the "proposal" command.
- *
- * @param label command label
- * @param merchant_url base URL of the merchant serving
- *        the proposal request.
- * @param http_status expected HTTP status.
- * @param order_id the name of the order to add.
- * @param refund_deadline the deadline for refunds on this order.
- * @param pay_deadline the deadline for payment on this order.
- * @param amount the amount this order is for.
- * @return the command
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_orders (const char *label,
                                         const char *merchant_url,
@@ -779,28 +753,6 @@ TALER_TESTING_cmd_merchant_post_orders (const char *label,
 }
 
 
-/**
- * Make the "proposal" command.
- *
- * @param label command label
- * @param merchant_url base URL of the merchant serving
- *        the proposal request.
- * @param http_status expected HTTP status.
- * @param order_id the name of the order to add.
- * @param refund_deadline the deadline for refunds on this order.
- * @param pay_deadline the deadline for payment on this order.
- * @param claim_token whether to generate a claim token.
- * @param amount the amount this order is for.
- * @param payment_target payment target for the order.
- * @param products a string indicating the products this order will be
- *        purchasing. Should be formatted as
- *        "[product_id]/[quantity];...".
- * @param locks a string of references to lock product commands that should
- *        be formatted as "[lock_1];[lock_2];...".
- * @param duplicate_of if not NULL, a reference to a previous order command
- *        that should be duplicated and checked for an identical response.
- * @return the command
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_orders2 (const char *label,
                                          const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_post_orders_paid.c 
b/src/testing/testing_api_cmd_post_orders_paid.c
index b6f60da..713e250 100644
--- a/src/testing/testing_api_cmd_post_orders_paid.c
+++ b/src/testing/testing_api_cmd_post_orders_paid.c
@@ -221,16 +221,6 @@ paid_cleanup (void *cls,
 }
 
 
-/**
- * Make an "order paid" test command.
- *
- * @param label command label
- * @param merchant_url merchant base URL
- * @param pay_reference reference to the payment to verify
- * @param session_id the session to use for the verification.
- * @param http_status expected HTTP response code
- * @return the command
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_orders_paid (const char *label,
                                              const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_post_products.c 
b/src/testing/testing_api_cmd_post_products.c
index f728629..5ed0717 100644
--- a/src/testing/testing_api_cmd_post_products.c
+++ b/src/testing/testing_api_cmd_post_products.c
@@ -244,29 +244,6 @@ post_products_cleanup (void *cls,
 }
 
 
-/**
- * Define a "POST /products" CMD.
- *
- * @param label command label.
- * @param merchant_url base URL of the merchant serving the
- *        POST /products request.
- * @param product_id the ID of the product to query
- * @param description description of the product
- * @param description_i18n Map from IETF BCP 47 language tags to localized 
descriptions
- * @param unit unit in which the product is measured (liters, kilograms, 
packages, etc.)
- * @param price the price for one @a unit of the product, zero is used to 
imply that
- *              this product is not sold separately or that the price is not 
fixed and
- *              must be supplied by the front-end.  If non-zero, price must 
include
- *              applicable taxes.
- * @param image base64-encoded product image
- * @param taxes list of taxes paid by the merchant
- * @param total_stock in @a units, -1 to indicate "infinite" (i.e. electronic 
books)
- * @param address where the product is in stock
- * @param next_restock when the next restocking is expected to happen, 0 for 
unknown,
- *                     #GNUNET_TIME_UNIT_FOREVER_ABS for 'never'.
- * @param http_status expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_products2 (
   const char *label,
@@ -314,18 +291,6 @@ TALER_TESTING_cmd_merchant_post_products2 (
 }
 
 
-/**
- * Define a "POST /products" CMD, simple version
- *
- * @param label command label.
- * @param merchant_url base URL of the merchant serving the
- *        POST /products request.
- * @param product_id the ID of the product to create
- * @param description name of the product
- * @param price price of the product
- * @param http_status expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_products (const char *label,
                                           const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_post_reserves.c 
b/src/testing/testing_api_cmd_post_reserves.c
index 950ea9b..dbd0c21 100644
--- a/src/testing/testing_api_cmd_post_reserves.c
+++ b/src/testing/testing_api_cmd_post_reserves.c
@@ -227,17 +227,6 @@ post_reserves_cleanup (void *cls,
 }
 
 
-/**
- * Define a "POST /reserves" CMD
- *
- * @param label command label.
- * @param merchant_url url to the merchant.
- * @param initial_balance initial amount in the reserve.
- * @param exchange_url url to the exchange
- * @param wire_method wire transfer method to use for this reserve
- * @param http_status expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_reserves (const char *label,
                                           const char *merchant_url,
@@ -270,13 +259,6 @@ TALER_TESTING_cmd_merchant_post_reserves (const char 
*label,
 }
 
 
-/**
- * This commands does not query the backend at all,
- * but just makes up a fake reserve.
- *
- * @param label command label.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_reserves_fake (const char *label)
 {
diff --git a/src/testing/testing_api_cmd_post_transfers.c 
b/src/testing/testing_api_cmd_post_transfers.c
index c051ce4..3bfd694 100644
--- a/src/testing/testing_api_cmd_post_transfers.c
+++ b/src/testing/testing_api_cmd_post_transfers.c
@@ -457,24 +457,6 @@ post_transfers_cleanup (void *cls,
 }
 
 
-/**
- * Define a POST /transfers CMD.  Details like the WTID and
- * other required parameters will be extracted from the bank
- * history, using the latest transfer of the specified
- * @a credit_amount to the @a merchant_url.
- *
- * @param label command label.
- * @param merchant_url base URL of the backend serving the
- *        "refund increase" request.
- * @param auth credentials to access the exchange's bank account
- * @param payto_rui URL of the exchange's bank account
- * @param credit_amount amount credited
- * @param http_code expected HTTP response code
- * @param ... NULL-terminated list of labels (const char *) of
- *        deposit (commands) we expect to be aggregated in the transfer
- *        (assuming @a http_code is #MHD_HTTP_OK)
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_post_transfer (
   const char *label,
diff --git a/src/testing/testing_api_cmd_refund_order.c 
b/src/testing/testing_api_cmd_refund_order.c
index aa32836..933ca52 100644
--- a/src/testing/testing_api_cmd_refund_order.c
+++ b/src/testing/testing_api_cmd_refund_order.c
@@ -227,18 +227,6 @@ refund_increase_cleanup (void *cls,
 }
 
 
-/**
- * Define a "refund order" CMD.
- *
- * @param label command label.
- * @param merchant_url base URL of the backend serving the
- *        "refund increase" request.
- * @param reason refund justification, human-readable.
- * @param order_id order id of the contract to refund.
- * @param refund_amount amount to be refund-increased.
- * @param http_code expected HTTP response code.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_merchant_order_refund (const char *label,
                                          const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_tip_authorize.c 
b/src/testing/testing_api_cmd_tip_authorize.c
index 5aa16e9..b6dd271 100644
--- a/src/testing/testing_api_cmd_tip_authorize.c
+++ b/src/testing/testing_api_cmd_tip_authorize.c
@@ -279,22 +279,6 @@ tip_authorize_cleanup (void *cls,
 }
 
 
-/**
- * Create a /tip-authorize CMD, specifying the Taler error code
- * that is expected to be returned by the backend.
- *
- * @param label this command label
- * @param merchant_url the base URL of the merchant that will
- *        serve the /tip-authorize request.
- * @param exchange_url the base URL of the exchange that owns
- *        the reserve from which the tip is going to be gotten.
- * @param http_status the HTTP response code which is expected
- *        for this operation.
- * @param justification human-readable justification for this
- *        tip authorization.
- * @param amount the amount to authorize for tipping.
- * @param ec expected Taler-defined error code.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_tip_authorize_with_ec (const char *label,
                                          const char *merchant_url,
@@ -328,24 +312,6 @@ TALER_TESTING_cmd_tip_authorize_with_ec (const char *label,
 }
 
 
-/**
- * Create a /tip-authorize CMD, specifying the Taler error code
- * that is expected to be returned by the backend.
- *
- * @param label this command label
- * @param merchant_url the base URL of the merchant that will
- *        serve the /tip-authorize request.
- * @param exchange_url the base URL of the exchange that owns
- *        the reserve from which the tip is going to be gotten.
- * @param reserve_reference reference to a command that created
- *        a reserve.
- * @param http_status the HTTP response code which is expected
- *        for this operation.
- * @param justification human-readable justification for this
- *        tip authorization.
- * @param amount the amount to authorize for tipping.
- * @param ec expected Taler-defined error code.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_tip_authorize_from_reserve_with_ec (const char *label,
                                                       const char *merchant_url,
@@ -382,20 +348,6 @@ TALER_TESTING_cmd_tip_authorize_from_reserve_with_ec 
(const char *label,
 }
 
 
-/**
- * Create a /tip-authorize CMD.
- *
- * @param label this command label
- * @param merchant_url the base URL of the merchant that will
- *        serve the /tip-authorize request.
- * @param exchange_url the base URL of the exchange that owns
- *        the reserve from which the tip is going to be gotten.
- * @param http_status the HTTP response code which is expected
- *        for this operation.
- * @param justification human-readable justification for this
- *        tip authorization.
- * @param amount the amount to authorize for tipping.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_tip_authorize (const char *label,
                                  const char *merchant_url,
@@ -427,22 +379,6 @@ TALER_TESTING_cmd_tip_authorize (const char *label,
 }
 
 
-/**
- * Create a /tip-authorize CMD.
- *
- * @param label this command label
- * @param merchant_url the base URL of the merchant that will
- *        serve the /tip-authorize request.
- * @param exchange_url the base URL of the exchange that owns
- *        the reserve from which the tip is going to be gotten.
- * @param reserve_reference reference to a command that created
- *        a reserve.
- * @param http_status the HTTP response code which is expected
- *        for this operation.
- * @param justification human-readable justification for this
- *        tip authorization.
- * @param amount the amount to authorize for tipping.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_tip_authorize_from_reserve (const char *label,
                                               const char *merchant_url,
@@ -476,15 +412,6 @@ TALER_TESTING_cmd_tip_authorize_from_reserve (const char 
*label,
 }
 
 
-/**
- * This commands does not query the backend at all,
- * but just makes up a fake authorization id that will
- * be subsequently used by the "pick up" CMD in order
- * to test against such a case.
- *
- * @param label command label.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_tip_authorize_fake (const char *label)
 {
diff --git a/src/testing/testing_api_cmd_tip_pickup.c 
b/src/testing/testing_api_cmd_tip_pickup.c
index 495f80f..49e5e96 100644
--- a/src/testing/testing_api_cmd_tip_pickup.c
+++ b/src/testing/testing_api_cmd_tip_pickup.c
@@ -326,16 +326,6 @@ tip_pickup_cleanup (void *cls,
 }
 
 
-/**
- * Offers information from the /tip-pickup CMD state to other
- * commands.
- *
- * @param cls closure
- * @param ret[out] result (could be anything)
- * @param trait name of the trait
- * @param index index number of the object to extract.
- * @return #GNUNET_OK on success
- */
 static int
 tip_pickup_traits (void *cls,
                    const void **ret,
@@ -376,18 +366,6 @@ tip_pickup_traits (void *cls,
 }
 
 
-/**
- * Define a /tip-pickup CMD.
- *
- * @param label the command label
- * @param merchant_url base URL of the backend which will serve
- *        the /tip-pickup request.
- * @param http_status expected HTTP response code.
- * @param authorize_reference reference to a /tip-autorize CMD
- *        that offers a tip id to pick up.
- * @param amounts array of string-defined amounts that specifies
- *        which denominations will be accepted for tipping.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_tip_pickup (const char *label,
                               const char *merchant_url,
@@ -416,22 +394,6 @@ TALER_TESTING_cmd_tip_pickup (const char *label,
 }
 
 
-/**
- * Define a /tip-pickup CMD, equipped with the expected error
- * code.
- *
- * @param label the command label
- * @param merchant_url base URL of the backend which will serve
- *        the /tip-pickup request.
- * @param http_status expected HTTP response code.
- * @param authorize_reference reference to a /tip-autorize CMD
- *        that offers a tip id to pick up.
- * @param amounts array of string-defined amounts that specifies
- *        which denominations will be accepted for tipping.
- * @param exchange connection handle to the exchange that will
- *        eventually serve the withdraw operation.
- * @param ec expected Taler error code.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_tip_pickup_with_ec (const char *label,
                                       const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_wallet_get_order.c 
b/src/testing/testing_api_cmd_wallet_get_order.c
index 56ff474..6a8a6e8 100644
--- a/src/testing/testing_api_cmd_wallet_get_order.c
+++ b/src/testing/testing_api_cmd_wallet_get_order.c
@@ -288,18 +288,6 @@ wallet_get_order_cleanup (void *cls,
 }
 
 
-/**
- * Define a GET /orders/$ORDER_ID CMD.
- *
- * @param label the command label
- * @param merchant_url base URL of the merchant which will
- *        serve the request.
- * @param order_reference reference to a command that created an order.
- * @param paid whether the order has been paid for or not.
- * @param refunded whether the order has been refunded.
- * @param refund_pending whether the order has refunds that haven't been 
obtained.
- * @param http_status expected HTTP response code for the request.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_wallet_get_order (const char *label,
                                     const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_wallet_get_tip.c 
b/src/testing/testing_api_cmd_wallet_get_tip.c
index 3518e57..e6d28ff 100644
--- a/src/testing/testing_api_cmd_wallet_get_tip.c
+++ b/src/testing/testing_api_cmd_wallet_get_tip.c
@@ -207,15 +207,6 @@ wallet_get_tip_cleanup (void *cls,
 }
 
 
-/**
- * Define a GET /tips/$TIP_ID CMD.
- *
- * @param label the command label
- * @param merchant_url base URL of the merchant which will
- *        serve the request.
- * @param tip_reference reference to a command that created a tip.
- * @param http_status expected HTTP response code for the request.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_wallet_get_tip (const char *label,
                                   const char *merchant_url,
@@ -241,16 +232,6 @@ TALER_TESTING_cmd_wallet_get_tip (const char *label,
 }
 
 
-/**
- * Define a GET /tips/$TIP_ID CMD.
- *
- * @param label the command label
- * @param merchant_url base URL of the merchant which will
- *        serve the request.
- * @param tip_reference reference to a command that created a tip.
- * @param amount_remaining the balance remaining after pickups.
- * @param http_status expected HTTP response code for the request.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_wallet_get_tip2 (const char *label,
                                    const char *merchant_url,
diff --git a/src/testing/testing_api_cmd_wallet_post_orders_refund.c 
b/src/testing/testing_api_cmd_wallet_post_orders_refund.c
index 2c3e962..d50e273 100644
--- a/src/testing/testing_api_cmd_wallet_post_orders_refund.c
+++ b/src/testing/testing_api_cmd_wallet_post_orders_refund.c
@@ -262,20 +262,6 @@ obtain_refunds_cleanup (void *cls,
 }
 
 
-/**
- * Define a "refund order" CMD.
- *
- * @param label command label.
- * @param merchant_url base URL of the backend serving the
- *        "refund increase" request.
- * @param order_ref order id of the contract to refund.
- * @param http_code expected HTTP response code.
- * @param ... NULL-terminated list of labels (const char *) of
- *        refunds (commands) we expect to be aggregated in the transfer
- *        (assuming @a http_code is #MHD_HTTP_OK). If @e refunded is false,
- *        this parameter is ignored.
- * @return the command.
- */
 struct TALER_TESTING_Command
 TALER_TESTING_cmd_wallet_order_refund (const char *label,
                                        const char *merchant_url,
diff --git a/src/testing/testing_api_helpers.c 
b/src/testing/testing_api_helpers.c
index 6d244cb..659bb69 100644
--- a/src/testing/testing_api_helpers.c
+++ b/src/testing/testing_api_helpers.c
@@ -30,16 +30,6 @@
 #include "taler_merchant_testing_lib.h"
 
 
-/**
- * Start the merchant backend process.  Assume the port
- * is available and the database is clean.  Use the "prepare
- * merchant" function to do such tasks.
- *
- * @param config_filename configuration filename.
- *
- * @return the process, or NULL if the process could not
- *         be started.
- */
 struct GNUNET_OS_Process *
 TALER_TESTING_run_merchant (const char *config_filename,
                             const char *merchant_url)
@@ -95,15 +85,6 @@ TALER_TESTING_run_merchant (const char *config_filename,
 }
 
 
-/**
- * Prepare the merchant execution.  Create tables and check if
- * the port is available.
- *
- * @param config_filename configuration filename.
- *
- * @return the base url, or NULL upon errors.  Must be freed
- *         by the caller.
- */
 char *
 TALER_TESTING_prepare_merchant (const char *config_filename)
 {
diff --git a/src/testing/testing_api_trait_claim_nonce.c 
b/src/testing/testing_api_trait_claim_nonce.c
index 66f5ce8..7a87881 100644
--- a/src/testing/testing_api_trait_claim_nonce.c
+++ b/src/testing/testing_api_trait_claim_nonce.c
@@ -28,16 +28,7 @@
 
 #define TALER_TESTING_TRAIT_CLAIM_NONCE "nonce"
 
-/**
- * Obtain an order claim nonce from a @a cmd.
- *
- * @param cmd command to extract the trait from.
- * @param index which nonce to pick if @a
- *        cmd has multiple on offer
- * @param nonce[out] set to the wanted data.
- *
- * @return #GNUNET_OK on success
- */
+
 int
 TALER_TESTING_get_trait_claim_nonce
   (const struct TALER_TESTING_Command *cmd,
@@ -51,14 +42,6 @@ TALER_TESTING_get_trait_claim_nonce
 }
 
 
-/**
- * Offer an order claim nonce.
- *
- * @param index which nonce to offer if there are
- *        multiple on offer.
- * @param nonce set to the offered nonce.
- * @return the trait
- */
 struct TALER_TESTING_Trait
 TALER_TESTING_make_trait_claim_nonce
   (unsigned int index,
diff --git a/src/testing/testing_api_trait_hash.c 
b/src/testing/testing_api_trait_hash.c
index 7a4fdb2..f653f80 100644
--- a/src/testing/testing_api_trait_hash.c
+++ b/src/testing/testing_api_trait_hash.c
@@ -35,16 +35,6 @@
 #define TALER_TESTING_TRAIT_TIP_ID "tip-id"
 #define TALER_TESTING_TRAIT_H_CONTRACT_TERMS "h-contract-terms"
 
-/**
- * Obtain tip id from a @a cmd.
- *
- * @param cmd command to extract the trait from.
- * @param index which tip id to pick if @a
- *        cmd has multiple on offer
- * @param tip_id[out] set to the wanted data.
- *
- * @return #GNUNET_OK on success
- */
 int
 TALER_TESTING_get_trait_tip_id
   (const struct TALER_TESTING_Command *cmd,
@@ -58,14 +48,6 @@ TALER_TESTING_get_trait_tip_id
 }
 
 
-/**
- * Offer tip id.
- *
- * @param index which tip id to offer if there are
- *        multiple on offer.
- * @param tip_id set to the offered tip id.
- * @return the trait
- */
 struct TALER_TESTING_Trait
 TALER_TESTING_make_trait_tip_id
   (unsigned int index,
@@ -80,15 +62,6 @@ TALER_TESTING_make_trait_tip_id
 }
 
 
-/**
- * Obtain contract terms hash from a @a cmd.
- *
- * @param cmd command to extract the trait from.
- * @param index index number of the trait to fetch.
- * @param h_contract_terms[out] set to the wanted data.
- *
- * @return #GNUNET_OK on success
- */
 int
 TALER_TESTING_get_trait_h_contract_terms
   (const struct TALER_TESTING_Command *cmd,
@@ -102,16 +75,6 @@ TALER_TESTING_get_trait_h_contract_terms
 }
 
 
-/**
- * Offer contract terms hash code.
- *
- * @param index which hashed contract terms to
- *        offer if there are multiple on offer
- * @param h_contract_terms set to the offered hashed
- *        contract terms.
- *
- * @return the trait
- */
 struct TALER_TESTING_Trait
 TALER_TESTING_make_trait_h_contract_terms
   (unsigned int index,
diff --git a/src/testing/testing_api_trait_merchant_sig.c 
b/src/testing/testing_api_trait_merchant_sig.c
index 71decd0..2662a87 100644
--- a/src/testing/testing_api_trait_merchant_sig.c
+++ b/src/testing/testing_api_trait_merchant_sig.c
@@ -28,16 +28,6 @@
 
 #define TALER_TESTING_TRAIT_MERCHANT_SIG "reserve-private-key"
 
-/**
- * Obtain a merchant signature over a contract from a @a cmd.
- *
- * @param cmd command to extract trait from
- * @param index which signature to pick if @a cmd has multiple
- *        on offer
- * @param merchant_sig[out] set to the wanted signature.
- *
- * @return #GNUNET_OK on success
- */
 int
 TALER_TESTING_get_trait_merchant_sig
   (const struct TALER_TESTING_Command *cmd,
@@ -51,15 +41,6 @@ TALER_TESTING_get_trait_merchant_sig
 }
 
 
-/**
- * Offer a merchant signature over a contract.
- *
- * @param index which signature to offer if there are multiple
- *        on offer
- * @param merchant_sig set to the offered signature.
- *
- * @return the trait
- */
 struct TALER_TESTING_Trait
 TALER_TESTING_make_trait_merchant_sig
   (unsigned int index,
diff --git a/src/testing/testing_api_trait_planchet.c 
b/src/testing/testing_api_trait_planchet.c
index a852d95..97ee888 100644
--- a/src/testing/testing_api_trait_planchet.c
+++ b/src/testing/testing_api_trait_planchet.c
@@ -28,15 +28,6 @@
 
 #define TALER_TESTING_TRAIT_PLANCHET_SECRETS "planchet-secrets"
 
-/**
- * Obtain planchet secrets from a @a cmd.
- *
- * @param cmd command to extract trait from.
- * @param index index of the trait.
- * @param planchet_secrets[out] set to the wanted secrets.
- *
- * @return #GNUNET_OK on success
- */
 int
 TALER_TESTING_get_trait_planchet_secrets
   (const struct TALER_TESTING_Command *cmd,
@@ -50,14 +41,6 @@ TALER_TESTING_get_trait_planchet_secrets
 }
 
 
-/**
- * Offer planchet secrets.
- *
- * @param index of the trait.
- * @param planchet_secrets set to the offered secrets.
- *
- * @return the trait
- */
 struct TALER_TESTING_Trait
 TALER_TESTING_make_trait_planchet_secrets
   (unsigned int index,
diff --git a/src/testing/testing_api_trait_refund_entry.c 
b/src/testing/testing_api_trait_refund_entry.c
index af8e384..5c99bac 100644
--- a/src/testing/testing_api_trait_refund_entry.c
+++ b/src/testing/testing_api_trait_refund_entry.c
@@ -33,15 +33,6 @@
 
 #define TALER_TESTING_TRAIT_REFUND_ENTRY "refund-entry"
 
-/**
- * Obtain refund entry from a @a cmd.
- *
- * @param cmd command to extract the trait from.
- * @param index the trait index.
- * @param refund_entry[out] set to the wanted data.
- *
- * @return #GNUNET_OK on success
- */
 int
 TALER_TESTING_get_trait_refund_entry (
   const struct TALER_TESTING_Command *cmd,
@@ -55,14 +46,6 @@ TALER_TESTING_get_trait_refund_entry (
 }
 
 
-/**
- * Offer refund entry.
- *
- * @param index index number of the trait to offer.
- * @param refund_entry set to the offered refund entry.
- *
- * @return the trait
- */
 struct TALER_TESTING_Trait
 TALER_TESTING_make_trait_refund_entry (
   unsigned int index,
diff --git a/src/testing/testing_api_trait_string.c 
b/src/testing/testing_api_trait_string.c
index d3518d2..44ff616 100644
--- a/src/testing/testing_api_trait_string.c
+++ b/src/testing/testing_api_trait_string.c
@@ -29,21 +29,6 @@
 #define TALER_TESTING_TRAIT_PROPOSAL_REFERENCE "proposal-reference"
 #define TALER_TESTING_TRAIT_COIN_REFERENCE "coin-reference"
 
-/**
- * Obtain a reference to a proposal command.  Any command that
- * works with proposals, might need to offer their reference to
- * it.  Notably, the "pay" command, offers its proposal reference
- * to the "pay abort" command as the latter needs to reconstruct
- * the same data needed by the former in order to use the "pay
- * abort" API.
- *
- * @param cmd command to extract the trait from.
- * @param index which reference to pick if @a cmd has multiple
- *        on offer.
- * @param proposal_reference[out] set to the wanted reference.
- *
- * @return #GNUNET_OK on success
- */
 int
 TALER_TESTING_get_trait_proposal_reference
   (const struct TALER_TESTING_Command *cmd,
@@ -57,15 +42,6 @@ TALER_TESTING_get_trait_proposal_reference
 }
 
 
-/**
- * Offer a proposal reference.
- *
- * @param index which reference to offer if there are
- *        multiple on offer.
- * @param proposal_reference[out] pointer to the reference to offer.
- *
- * @return the trait
- */
 struct TALER_TESTING_Trait
 TALER_TESTING_make_trait_proposal_reference
   (unsigned int index,
@@ -80,23 +56,6 @@ TALER_TESTING_make_trait_proposal_reference
 }
 
 
-/**
- * Obtain a reference to any command that can provide coins as
- * traits.
- *
- * @param cmd command to extract trait from
- * @param index which reference to pick if @a cmd has multiple
- *        on offer
- * @param coin_reference[out] set to the wanted reference.
- *        NOTE: a _single_ reference can contain
- *        _multiple_ instances, using semi-colon as separator.
- *        For example, a _single_ reference can be this:
- *        "coin-ref-1", or even this: "coin-ref-1;coin-ref-2".
- *        The "pay" command contains functions that can parse
- *        such format.
- *
- * @return #GNUNET_OK on success
- */
 int
 TALER_TESTING_get_trait_coin_reference
   (const struct TALER_TESTING_Command *cmd,
@@ -110,15 +69,6 @@ TALER_TESTING_get_trait_coin_reference
 }
 
 
-/**
- * Offer a coin reference.
- *
- * @param index which reference to offer if there are
- *        multiple on offer.
- * @param coin_reference set to the offered reference.
- *
- * @return the trait
- */
 struct TALER_TESTING_Trait
 TALER_TESTING_make_trait_coin_reference
   (unsigned int index,

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]