aboutsummaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd_responses.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mint/taler-mint-httpd_responses.h')
-rw-r--r--src/mint/taler-mint-httpd_responses.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mint/taler-mint-httpd_responses.h b/src/mint/taler-mint-httpd_responses.h
index 471d73bd1..2dc306110 100644
--- a/src/mint/taler-mint-httpd_responses.h
+++ b/src/mint/taler-mint-httpd_responses.h
@@ -160,12 +160,14 @@ TALER_MINT_reply_deposit_success (struct MHD_Connection *connection,
160 * Send reserve status information to client. 160 * Send reserve status information to client.
161 * 161 *
162 * @param connection connection to the client 162 * @param connection connection to the client
163 * @param reserve reserve status information to return 163 * @param balance current reserve balance
164 * @param expiration when will the reserve expire
164 * @return MHD result code 165 * @return MHD result code
165 */ 166 */
166int 167int
167TALER_MINT_reply_withdraw_status_success (struct MHD_Connection *connection, 168TALER_MINT_reply_withdraw_status_success (struct MHD_Connection *connection,
168 const struct Reserve *reserve); 169 struct TALER_Amount balance,
170 struct GNUNET_TIME_Absolute expiration);
169 171
170 172
171/** 173/**