diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/include/taler_crypto_lib.h | 6 | ||||
| -rw-r--r-- | src/include/taler_exchange_service.h | 14 | 
2 files changed, 13 insertions, 7 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h index 2527362b..2977ccf3 100644 --- a/src/include/taler_crypto_lib.h +++ b/src/include/taler_crypto_lib.h @@ -3111,6 +3111,9 @@ TALER_wallet_reserve_open_deposit_verify (  /**   * Sign a request to close a reserve.   * + * @param request_timestamp when was the request created + * @param h_payto where to send the funds (NULL allowed to send + *        to origin of the reserve)   * @param reserve_priv key identifying the reserve   * @param[out] reserve_sig resulting signature   */ @@ -3125,6 +3128,9 @@ TALER_wallet_reserve_close_sign (  /**   * Verify wallet request to close an account.   * + * @param request_timestamp when was the request created + * @param h_payto where to send the funds (NULL/all zeros + *        allowed to send to origin of the reserve)   * @param reserve_pub account’s public key   * @param reserve_sig the signature made with purpose #TALER_SIGNATURE_WALLET_RESERVE_CLOSE   * @return #GNUNET_OK if the signature is valid diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index 5899df95..cc19885c 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -5324,7 +5324,7 @@ TALER_EXCHANGE_reserves_open (   * Cancel a reserve status request.  This function cannot be used   * on a request handle if a response is already served for it.   * - * @param rsh the reserve request handle + * @param roh the reserve open request handle   */  void  TALER_EXCHANGE_reserves_open_cancel ( @@ -5416,11 +5416,11 @@ TALER_EXCHANGE_reserves_get_attestable (   * Cancel a request to get attestable attributes.  This function cannot be used   * on a request handle if a response is already served for it.   * - * @param rsh the reserve request handle + * @param rgah the reserve get attestable request handle   */  void  TALER_EXCHANGE_reserves_get_attestable_cancel ( -  struct TALER_EXCHANGE_ReservesGetAttestHandle *roh); +  struct TALER_EXCHANGE_ReservesGetAttestHandle *rgah);  /** @@ -5499,11 +5499,11 @@ TALER_EXCHANGE_reserves_attest (   * Cancel a reserve status request.  This function cannot be used   * on a request handle if a response is already served for it.   * - * @param rsh the reserve request handle + * @param rah the reserve attest request handle   */  void  TALER_EXCHANGE_reserves_attest_cancel ( -  struct TALER_EXCHANGE_ReservesAttestHandle *roh); +  struct TALER_EXCHANGE_ReservesAttestHandle *rah);  /* *********************  /reserves/$RID/close *********************** */ @@ -5583,10 +5583,10 @@ TALER_EXCHANGE_reserves_close (   * Cancel a reserve status request.  This function cannot be used   * on a request handle if a response is already served for it.   * - * @param rsh the reserve request handle + * @param rch the reserve request handle   */  void  TALER_EXCHANGE_reserves_close_cancel ( -  struct TALER_EXCHANGE_ReservesCloseHandle *roh); +  struct TALER_EXCHANGE_ReservesCloseHandle *rch);  #endif  /* _TALER_EXCHANGE_SERVICE_H */  | 
