diff options
author | MS <ms@taler.net> | 2020-10-20 17:16:07 +0200 |
---|---|---|
committer | MS <ms@taler.net> | 2020-10-20 17:16:07 +0200 |
commit | d1db3b3ca4e5c72c721508dc113eeb87740b48dd (patch) | |
tree | 78327507275c0a78db1562c3f22b000d1cd9a867 /src | |
parent | c5cbcea02a9b926924601d95c3bebb02eb06910b (diff) |
@param
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/taler-merchant-httpd_private-post-orders.c | 2 | ||||
-rw-r--r-- | src/backenddb/plugin_merchantdb_postgres.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c index 31707a1e..b355ba40 100644 --- a/src/backend/taler-merchant-httpd_private-post-orders.c +++ b/src/backend/taler-merchant-httpd_private-post-orders.c @@ -951,6 +951,8 @@ add_payment_details (struct MHD_Connection *connection, * @param h_post_data hash of the client's POST request, for idempotency checks * @param[in,out] order order to process (can be modified) * @param claim_token token to use for access control + * @param refund_delay time window where it is possible to ask a refund + * @param payment_target bank account that should receive the payment * @param inventory_products_length length of the @a inventory_products array * @param inventory_products array of products to add to @a order from our inventory * @param uuids_length length of the @a uuids array diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c index cb89f2c8..74c76485 100644 --- a/src/backenddb/plugin_merchantdb_postgres.c +++ b/src/backenddb/plugin_merchantdb_postgres.c @@ -1281,6 +1281,7 @@ lookup_orders_cb (void *cls, * @param instance_id instance to obtain order of * @param of filter to apply when looking up orders * @param cb callback to pass all the orders that are found + * @param cb_cls closure for @a cb * @return transaction status */ static enum GNUNET_DB_QueryStatus @@ -4295,7 +4296,7 @@ postgres_lookup_transfers (void *cls, * including signature (so we have proof). * * @param cls closure - * @paramm master_pub public key of the exchange + * @param master_pub public key of the exchange * @param h_wire_method hash of wire method * @param wire_fee wire fee charged * @param closing_fee closing fee charged (irrelevant for us, |