diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/auditor_api_deposit_confirmation.c | 1 | ||||
| -rw-r--r-- | src/lib/exchange_api_batch_withdraw.c | 3 | ||||
| -rw-r--r-- | src/lib/exchange_api_common.h | 2 | ||||
| -rw-r--r-- | src/lib/exchange_api_deposits_get.c | 1 | ||||
| -rw-r--r-- | src/lib/exchange_api_management_post_extensions.c | 6 | ||||
| -rw-r--r-- | src/lib/exchange_api_melt.c | 1 | 
6 files changed, 8 insertions, 6 deletions
| diff --git a/src/lib/auditor_api_deposit_confirmation.c b/src/lib/auditor_api_deposit_confirmation.c index be981eb9..c4542d0e 100644 --- a/src/lib/auditor_api_deposit_confirmation.c +++ b/src/lib/auditor_api_deposit_confirmation.c @@ -156,6 +156,7 @@ handle_deposit_confirmation_finished (void *cls,   * @param h_extensions hash over the extensions, if any   * @param h_contract_terms hash of the contact of the merchant with the customer (further details are never disclosed to the auditor)   * @param exchange_timestamp timestamp when the deposit was received by the wallet + * @param wire_deadline by what time must the amount be wired to the merchant   * @param refund_deadline date until which the merchant can issue a refund to the customer via the auditor (can be zero if refunds are not allowed); must not be after the @a wire_deadline   * @param amount_without_fee the amount confirmed to be wired by the exchange to the merchant   * @param coin_pub coin’s public key diff --git a/src/lib/exchange_api_batch_withdraw.c b/src/lib/exchange_api_batch_withdraw.c index e5d3c7f9..4e0d6abc 100644 --- a/src/lib/exchange_api_batch_withdraw.c +++ b/src/lib/exchange_api_batch_withdraw.c @@ -145,7 +145,8 @@ struct TALER_EXCHANGE_BatchWithdrawHandle   *   * @param cls the `struct TALER_EXCHANGE_BatchWithdrawHandle`   * @param hr HTTP response data - * @param blind_sig blind signature over the coin, NULL on error + * @param blind_sigs array of blind signatures over the coins, NULL on error + * @param blind_sigs_length length of the @a blind_sigs array   */  static void  handle_reserve_batch_withdraw_finished ( diff --git a/src/lib/exchange_api_common.h b/src/lib/exchange_api_common.h index 9cbdf547..5721b376 100644 --- a/src/lib/exchange_api_common.h +++ b/src/lib/exchange_api_common.h @@ -50,6 +50,7 @@ TALER_EXCHANGE_check_purse_create_conflict_ (   *        not match the signature from the proof)   * @param merge_pub the public key (must match   *        the signature from the proof) + * @param purse_pub the public key of the purse   * @param exchange_url the base URL of this exchange   * @param proof the proof to check   * @return #GNUNET_OK if the @a proof is OK for @a purse_pub and @a merge_pub and conflicts with @a cmerge_sig @@ -93,7 +94,6 @@ TALER_EXCHANGE_check_purse_coin_conflict_ (   * @param ccontract_sig conflicting signature (must   *        not match the signature from the proof)   * @param purse_pub public key of the purse - * @param exchange_url the base URL of this exchange   * @param proof the proof to check   * @return #GNUNET_OK if the @a proof is OK for @a purse_pub and conflicts with @a ccontract_sig   */ diff --git a/src/lib/exchange_api_deposits_get.c b/src/lib/exchange_api_deposits_get.c index f7219f12..660323bc 100644 --- a/src/lib/exchange_api_deposits_get.c +++ b/src/lib/exchange_api_deposits_get.c @@ -323,7 +323,6 @@ TALER_EXCHANGE_deposits_get (    TALER_merchant_deposit_sign (h_contract_terms,                                 h_wire,                                 coin_pub, -                               &merchant,                                 merchant_priv,                                 &merchant_sig);    { diff --git a/src/lib/exchange_api_management_post_extensions.c b/src/lib/exchange_api_management_post_extensions.c index 544f85ef..abec4ef0 100644 --- a/src/lib/exchange_api_management_post_extensions.c +++ b/src/lib/exchange_api_management_post_extensions.c @@ -118,7 +118,7 @@ handle_post_extensions_finished (void *cls,              &hr);      ph->cb = NULL;    } -  TALER_EXCHANGE_post_management_extensions_cancel (ph); +  TALER_EXCHANGE_management_post_extensions_cancel (ph);  } @@ -180,7 +180,7 @@ TALER_EXCHANGE_management_post_extensions (                                    ph);    if (NULL == ph->job)    { -    TALER_EXCHANGE_post_management_extensions_cancel (ph); +    TALER_EXCHANGE_management_post_extensions_cancel (ph);      return NULL;    }    return ph; @@ -188,7 +188,7 @@ TALER_EXCHANGE_management_post_extensions (  void -TALER_EXCHANGE_post_management_extensions_cancel ( +TALER_EXCHANGE_management_post_extensions_cancel (    struct TALER_EXCHANGE_ManagementPostExtensionsHandle *ph)  {    if (NULL != ph->job) diff --git a/src/lib/exchange_api_melt.c b/src/lib/exchange_api_melt.c index ff720d2f..feeef400 100644 --- a/src/lib/exchange_api_melt.c +++ b/src/lib/exchange_api_melt.c @@ -417,6 +417,7 @@ start_melt (struct TALER_EXCHANGE_MeltHandle *mh)   * the application and cancel the operation.   *   * @param[in] mh melt request that failed + * @param ec error code to fail with   */  static void  fail_mh (struct TALER_EXCHANGE_MeltHandle *mh, | 
