summaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd_responses.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-01-28 15:19:06 +0100
committerChristian Grothoff <christian@grothoff.org>2015-01-28 15:19:06 +0100
commit7f171e69b27d48f02acd8c79e3a173a448be7ebd (patch)
treed9079cc827449cea754b667ae7337ff6c4a59219 /src/mint/taler-mint-httpd_responses.h
parentc119d914b39305add86ef58e058e80ef7af20a40 (diff)
downloadexchange-7f171e69b27d48f02acd8c79e3a173a448be7ebd.tar.gz
exchange-7f171e69b27d48f02acd8c79e3a173a448be7ebd.tar.bz2
exchange-7f171e69b27d48f02acd8c79e3a173a448be7ebd.zip
more cleanup of mint.h
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,
* Send reserve status information to client.
*
* @param connection connection to the client
- * @param reserve reserve status information to return
+ * @param balance current reserve balance
+ * @param expiration when will the reserve expire
* @return MHD result code
*/
int
TALER_MINT_reply_withdraw_status_success (struct MHD_Connection *connection,
- const struct Reserve *reserve);
+ struct TALER_Amount balance,
+ struct GNUNET_TIME_Absolute expiration);
/**