diff options
author | MS <ms@taler.net> | 2020-10-15 16:20:25 +0200 |
---|---|---|
committer | MS <ms@taler.net> | 2020-10-15 16:20:25 +0200 |
commit | 01126ed1389937fe6f4d2fe7c0a4ca27026bb57c (patch) | |
tree | fbbec3811f6e7b103df8fc684520de53d1e68ef7 /src/lib/merchant_api_get_transfers.c | |
parent | da11b4b50f32adb12200fa69cbfa3ddcc072a357 (diff) |
Doxygen fixes
Diffstat (limited to 'src/lib/merchant_api_get_transfers.c')
-rw-r--r-- | src/lib/merchant_api_get_transfers.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/lib/merchant_api_get_transfers.c b/src/lib/merchant_api_get_transfers.c index a9fc5fd1..481f7abd 100644 --- a/src/lib/merchant_api_get_transfers.c +++ b/src/lib/merchant_api_get_transfers.c @@ -216,33 +216,6 @@ handle_transfers_get_finished (void *cls, } -/** - * Request backend to return list of all wire transfers that - * we received (or that the exchange claims we should have received). - * - * Note that when filtering by timestamp (using “before” and/or “after”), we - * use the time reported by the exchange and thus will ONLY return results for - * which we already have a response from the exchange. This should be - * virtually all transfers, however it is conceivable that for some transfer - * the exchange responded with a temporary error (i.e. HTTP status 500+) and - * then we do not yet have an execution time to filter by. Thus, IF timestamp - * filters are given, transfers for which we have no response from the - * exchange yet are automatically excluded. - * - * @param ctx execution context - * @param backend_url base URL of the backend - * @param payto_uri filter by this credit account of the merchant - * @param before limit to transactions before this timestamp, use - * #GNUNET_TIME_UNIT_FOREVER_ABS to not filter by @a before - * @param after limit to transactions after this timestamp, use - * #GNUNET_TIME_UNIT_ZERO_ABS to not filter by @a after - * @param limit return at most this number of results; negative to descend in execution time - * @param offset start at this "credit serial" number (exclusive) - * @param verified filter results by verification status - * @param cb the callback to call when a reply for this request is available - * @param cb_cls closure for @a cb - * @return a handle for this request - */ struct TALER_MERCHANT_GetTransfersHandle * TALER_MERCHANT_transfers_get ( struct GNUNET_CURL_Context *ctx, @@ -327,12 +300,6 @@ TALER_MERCHANT_transfers_get ( } -/** - * Cancel a GET /transfers request. This function cannot be used - * on a request handle if a response is already served for it. - * - * @param gth handle to the tracking operation being cancelled - */ void TALER_MERCHANT_transfers_get_cancel ( struct TALER_MERCHANT_GetTransfersHandle *gth) |