aboutsummaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_db.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchange/taler-exchange-httpd_db.h')
-rw-r--r--src/exchange/taler-exchange-httpd_db.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd_db.h b/src/exchange/taler-exchange-httpd_db.h
index 7e73340b7..c115981d3 100644
--- a/src/exchange/taler-exchange-httpd_db.h
+++ b/src/exchange/taler-exchange-httpd_db.h
@@ -31,14 +31,12 @@
31 * 31 *
32 * @param coin the coin to make known 32 * @param coin the coin to make known
33 * @param connection MHD request context 33 * @param connection MHD request context
34 * @param session database session and transaction to use
35 * @param[out] mhd_ret set to MHD status on error 34 * @param[out] mhd_ret set to MHD status on error
36 * @return transaction status, negative on error (@a mhd_ret will be set in this case) 35 * @return transaction status, negative on error (@a mhd_ret will be set in this case)
37 */ 36 */
38enum GNUNET_DB_QueryStatus 37enum GNUNET_DB_QueryStatus
39TEH_make_coin_known (const struct TALER_CoinPublicInfo *coin, 38TEH_make_coin_known (const struct TALER_CoinPublicInfo *coin,
40 struct MHD_Connection *connection, 39 struct MHD_Connection *connection,
41 struct TALER_EXCHANGEDB_Session *session,
42 MHD_RESULT *mhd_ret); 40 MHD_RESULT *mhd_ret);
43 41
44 42
@@ -52,7 +50,6 @@ TEH_make_coin_known (const struct TALER_CoinPublicInfo *coin,
52 * 50 *
53 * @param cls closure 51 * @param cls closure
54 * @param connection MHD request which triggered the transaction 52 * @param connection MHD request which triggered the transaction
55 * @param session database session to use
56 * @param[out] mhd_ret set to MHD response status for @a connection, 53 * @param[out] mhd_ret set to MHD response status for @a connection,
57 * if transaction failed (!) 54 * if transaction failed (!)
58 * @return transaction status 55 * @return transaction status
@@ -60,7 +57,6 @@ TEH_make_coin_known (const struct TALER_CoinPublicInfo *coin,
60typedef enum GNUNET_DB_QueryStatus 57typedef enum GNUNET_DB_QueryStatus
61(*TEH_DB_TransactionCallback)(void *cls, 58(*TEH_DB_TransactionCallback)(void *cls,
62 struct MHD_Connection *connection, 59 struct MHD_Connection *connection,
63 struct TALER_EXCHANGEDB_Session *session,
64 MHD_RESULT *mhd_ret); 60 MHD_RESULT *mhd_ret);
65 61
66 62