gnunet-svn
[Top][All Lists]
Advanced

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

[taler-merchant] branch master updated: Doxygen fixes


From: gnunet
Subject: [taler-merchant] branch master updated: Doxygen fixes
Date: Thu, 15 Oct 2020 16:13:38 +0200

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

ms pushed a commit to branch master
in repository merchant.

The following commit(s) were added to refs/heads/master by this push:
     new da11b4b  Doxygen fixes
da11b4b is described below

commit da11b4b50f32adb12200fa69cbfa3ddcc072a357
Author: MS <ms@taler.net>
AuthorDate: Thu Oct 15 16:13:31 2020 +0200

    Doxygen fixes
---
 src/include/taler_merchant_service.h            |  1 +
 src/lib/merchant_api_delete_reserve.c           |  2 +-
 src/lib/merchant_api_get_reserve.c              | 12 ----------
 src/lib/merchant_api_post_instances.c           | 29 +------------------------
 src/lib/merchant_api_post_order_pay.c           |  2 +-
 src/lib/merchant_api_post_products.c            |  6 -----
 src/lib/merchant_api_wallet_post_order_refund.c |  2 +-
 7 files changed, 5 insertions(+), 49 deletions(-)

diff --git a/src/include/taler_merchant_service.h 
b/src/include/taler_merchant_service.h
index cd16cac..910191d 100644
--- a/src/include/taler_merchant_service.h
+++ b/src/include/taler_merchant_service.h
@@ -493,6 +493,7 @@ typedef void
  * @param ctx the context
  * @param backend_url HTTP base URL for the backend
  * @param instance_id identity of the instance to get information about
+ * @param accounts_length how many bank accounts this instance has
  * @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
diff --git a/src/lib/merchant_api_delete_reserve.c 
b/src/lib/merchant_api_delete_reserve.c
index 22c0aa5..64360a8 100644
--- a/src/lib/merchant_api_delete_reserve.c
+++ b/src/lib/merchant_api_delete_reserve.c
@@ -113,7 +113,7 @@ handle_delete_reserve_finished (void *cls,
  *
  * @param ctx the context
  * @param backend_url HTTP base URL for the backend
- * @param instance_id which instance should be deleted
+ * @param reserve_pub which reserve should be deleted
  * @param purge purge instead of just deleting
  * @param cb function to call with the backend's return
  * @param cb_cls closure for @a config_cb
diff --git a/src/lib/merchant_api_get_reserve.c 
b/src/lib/merchant_api_get_reserve.c
index 31f241d..bd88661 100644
--- a/src/lib/merchant_api_get_reserve.c
+++ b/src/lib/merchant_api_get_reserve.c
@@ -227,18 +227,6 @@ handle_reserve_get_finished (void *cls,
 }
 
 
-/**
- * Issue a GET /reserve/$RESERVE_ID request to the backend.  Queries the 
backend
- * about the status of a reserve.
- *
- * @param ctx execution context
- * @param backend_url base URL of the merchant backend
- * @param reserve_pub which reserve should be queried
- * @param tips should we return details about the tips issued from the reserve
- * @param cb function to call with the result(s)
- * @param cb_cls closure for @a cb
- * @return handle for this operation, NULL upon errors
- */
 struct TALER_MERCHANT_ReserveGetHandle *
 TALER_MERCHANT_reserve_get (struct GNUNET_CURL_Context *ctx,
                             const char *backend_url,
diff --git a/src/lib/merchant_api_post_instances.c 
b/src/lib/merchant_api_post_instances.c
index 75de02c..c1a53af 100644
--- a/src/lib/merchant_api_post_instances.c
+++ b/src/lib/merchant_api_post_instances.c
@@ -151,28 +151,7 @@ handle_post_instances_finished (void *cls,
 }
 
 
-/**
- * Setup an new instance in the backend.
- *
- * @param ctx the context
- * @param backend_url HTTP base URL for the backend
- * @param instance_id identity of the instance to get information about
- * @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 cb function to call with the
- *        backend's instances information
- * @param cb_cls closure for @a config_cb
- * @return the instances handle; NULL upon error
- */
-struct TALER_MERCHANT_InstancesPostHandle *
+etruct TALER_MERCHANT_InstancesPostHandle *
 TALER_MERCHANT_instances_post (
   struct GNUNET_CURL_Context *ctx,
   const char *backend_url,
@@ -283,12 +262,6 @@ TALER_MERCHANT_instances_post (
 }
 
 
-/**
- * Cancel /instances request.  Must not be called by clients after
- * the callback was invoked.
- *
- * @param igh request to cancel.
- */
 void
 TALER_MERCHANT_instances_post_cancel (
   struct TALER_MERCHANT_InstancesPostHandle *iph)
diff --git a/src/lib/merchant_api_post_order_pay.c 
b/src/lib/merchant_api_post_order_pay.c
index 03ed366..783b84f 100644
--- a/src/lib/merchant_api_post_order_pay.c
+++ b/src/lib/merchant_api_post_order_pay.c
@@ -168,7 +168,7 @@ check_coin_history (const struct TALER_MERCHANT_PaidCoin 
*pc,
  * coin was actually already spent!
  *
  * @param oph handle of the original pay operation
- * @param response cryptograophic proof returned by the
+ * @param json cryptograophic proof returned by the
  *        exchange/merchant
  * @return #GNUNET_OK if proof checks out
  */
diff --git a/src/lib/merchant_api_post_products.c 
b/src/lib/merchant_api_post_products.c
index fcfeb1b..6436059 100644
--- a/src/lib/merchant_api_post_products.c
+++ b/src/lib/merchant_api_post_products.c
@@ -239,12 +239,6 @@ TALER_MERCHANT_products_post (
 }
 
 
-/**
- * Cancel /products request.  Must not be called by clients after
- * the callback was invoked.
- *
- * @param igh request to cancel.
- */
 void
 TALER_MERCHANT_products_post_cancel (
   struct TALER_MERCHANT_ProductsPostHandle *pph)
diff --git a/src/lib/merchant_api_wallet_post_order_refund.c 
b/src/lib/merchant_api_wallet_post_order_refund.c
index 311a577..4f83ad4 100644
--- a/src/lib/merchant_api_wallet_post_order_refund.c
+++ b/src/lib/merchant_api_wallet_post_order_refund.c
@@ -72,7 +72,7 @@ struct TALER_MERCHANT_WalletOrderRefundHandle
  * Convenience function to call the callback in @a owgh with an error code of
  * @a ec and the exchange body being set to @a reply.
  *
- * @param owgh handle providing callback
+ * @param orh handle providing callback
  * @param ec error code to return to application
  * @param reply JSON reply we got from the exchange, can be NULL
  */

-- 
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]