aboutsummaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd_responses.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-01-20 18:50:19 +0100
committerChristian Grothoff <christian@grothoff.org>2016-01-20 18:50:19 +0100
commit43e04f2ad105ff4712697b3480bbb75330f69ad3 (patch)
tree3cf5f6cd5822804056e53515ebd4af86fe9883ae /src/mint/taler-mint-httpd_responses.h
parentd2917889767cf71ae0ad8d79ebe62ccf6b9a350e (diff)
downloadexchange-43e04f2ad105ff4712697b3480bbb75330f69ad3.tar.gz
exchange-43e04f2ad105ff4712697b3480bbb75330f69ad3.tar.bz2
exchange-43e04f2ad105ff4712697b3480bbb75330f69ad3.zip
work on #3888
Diffstat (limited to 'src/mint/taler-mint-httpd_responses.h')
-rw-r--r--src/mint/taler-mint-httpd_responses.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/mint/taler-mint-httpd_responses.h b/src/mint/taler-mint-httpd_responses.h
index 6debbc935..caad29047 100644
--- a/src/mint/taler-mint-httpd_responses.h
+++ b/src/mint/taler-mint-httpd_responses.h
@@ -277,13 +277,23 @@ TMH_RESPONSE_reply_deposit_pending (struct MHD_Connection *connection,
* them. Generates the 200 reply.
*
* @param connection connection to the client
- * @param wtid wire transfer identifier (as 0-terminated string)
+ * @param h_contract hash of the contract
+ * @param h_wire hash of wire account details
+ * @param coin_pub public key of the coin
+ * @param transaction_id merchant transaction identifier
+ * @param wtid raw wire transfer identifier
* @param exec_time execution time of the wire transfer
* @return MHD result code
*/
int
TMH_RESPONSE_reply_deposit_wtid (struct MHD_Connection *connection,
- const char *wtid,
+ const struct GNUNET_HashCode *h_contract,
+ const struct GNUNET_HashCode *h_wire,
+ const struct TALER_CoinSpendPublicKeyP *coin_pub,
+ const struct TALER_Amount *coin_contribution,
+ const struct TALER_Amount *total_amount,
+ uint64_t transaction_id,
+ const struct TALER_WireTransferIdentifierRawP *wtid,
struct GNUNET_TIME_Absolute exec_time);