summaryrefslogtreecommitdiff
path: root/src/lib/exchange_api_link.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-02-22 17:28:44 +0100
committerChristian Grothoff <christian@grothoff.org>2022-02-22 17:28:44 +0100
commitfbdc1996a6166893415c59ed830e75a8ccf79a51 (patch)
treeb2acd2c54c5d8cd2d227092576026bbfbfdf7ee5 /src/lib/exchange_api_link.c
parent900b2d6fd921554735c5a86a8aae874973bc29d4 (diff)
downloadexchange-fbdc1996a6166893415c59ed830e75a8ccf79a51.tar.gz
exchange-fbdc1996a6166893415c59ed830e75a8ccf79a51.tar.bz2
exchange-fbdc1996a6166893415c59ed830e75a8ccf79a51.zip
-use correct idx
Diffstat (limited to 'src/lib/exchange_api_link.c')
-rw-r--r--src/lib/exchange_api_link.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/exchange_api_link.c b/src/lib/exchange_api_link.c
index 130ec10d1..fdb34f075 100644
--- a/src/lib/exchange_api_link.c
+++ b/src/lib/exchange_api_link.c
@@ -81,7 +81,6 @@ struct TALER_EXCHANGE_LinkHandle
*
* @param lh link handle
* @param json json reply with the data for one coin
- * @param coin_num number of the coin
* @param trans_pub our transfer public key
* @param[out] lci where to return coin details
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
@@ -89,7 +88,6 @@ struct TALER_EXCHANGE_LinkHandle
static enum GNUNET_GenericReturnValue
parse_link_coin (const struct TALER_EXCHANGE_LinkHandle *lh,
const json_t *json,
- uint32_t coin_num,
const struct TALER_TransferPublicKeyP *trans_pub,
struct TALER_EXCHANGE_LinkedCoinInfo *lci)
{
@@ -349,7 +347,6 @@ parse_link_ok (struct TALER_EXCHANGE_LinkHandle *lh,
parse_link_coin (lh,
json_array_get (jsona,
i),
- i,
&trans_pub,
lci))
{