summaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd_responses.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-03-09 13:21:55 +0100
committerChristian Grothoff <christian@grothoff.org>2015-03-09 13:21:55 +0100
commit8eaeda99589fe5d0b43818033fc8871b62f50090 (patch)
tree237ea2a4dbb8470cde40f56efdb7d3e183119c27 /src/mint/taler-mint-httpd_responses.h
parentce8272446eebebb73cbab8ab4e388a2ec7e164fd (diff)
downloadexchange-8eaeda99589fe5d0b43818033fc8871b62f50090.tar.gz
exchange-8eaeda99589fe5d0b43818033fc8871b62f50090.tar.bz2
exchange-8eaeda99589fe5d0b43818033fc8871b62f50090.zip
fix use of signature for noreveal index, needs to be tied to session hash
Diffstat (limited to 'src/mint/taler-mint-httpd_responses.h')
-rw-r--r--src/mint/taler-mint-httpd_responses.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mint/taler-mint-httpd_responses.h b/src/mint/taler-mint-httpd_responses.h
index 08b88ea29..abfb4318c 100644
--- a/src/mint/taler-mint-httpd_responses.h
+++ b/src/mint/taler-mint-httpd_responses.h
@@ -249,15 +249,15 @@ TALER_MINT_reply_withdraw_sign_success (struct MHD_Connection *connection,
/**
* Send a response to a "/refresh/commit" request.
*
- * FIXME: maybe not the ideal argument type for @a refresh_session here.
- *
* @param connection the connection to send the response to
- * @param refresh_session the refresh session
+ * @param session_hash hash of the refresh session
+ * @param noreveal_index which index will the client not have to reveal
* @return a MHD status code
*/
int
TALER_MINT_reply_refresh_commit_success (struct MHD_Connection *connection,
- const struct RefreshSession *refresh_session);
+ const struct GNUNET_HashCode *session_hash,
+ uint16_t noreveal_index);
/**