summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_responses.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-03-15 22:24:15 +0100
committerChristian Grothoff <christian@grothoff.org>2020-03-15 22:24:15 +0100
commitefdc91ead4a74afb9b858ea3377bbf5581aabb0d (patch)
tree30be70823b36f128565f28b1f676bc4d88dc3f02 /src/exchange/taler-exchange-httpd_responses.h
parentf29a7e31558e28a6612a4cc73f0b25309135046f (diff)
downloadexchange-efdc91ead4a74afb9b858ea3377bbf5581aabb0d.tar.gz
exchange-efdc91ead4a74afb9b858ea3377bbf5581aabb0d.tar.bz2
exchange-efdc91ead4a74afb9b858ea3377bbf5581aabb0d.zip
clean up link logic
Diffstat (limited to 'src/exchange/taler-exchange-httpd_responses.h')
-rw-r--r--src/exchange/taler-exchange-httpd_responses.h24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/exchange/taler-exchange-httpd_responses.h b/src/exchange/taler-exchange-httpd_responses.h
index 07298322f..5dd98174f 100644
--- a/src/exchange/taler-exchange-httpd_responses.h
+++ b/src/exchange/taler-exchange-httpd_responses.h
@@ -42,9 +42,9 @@
* @return json representation of the @a rh, NULL on error
*/
json_t *
-TEH_RESPONSE_compile_reserve_history (const struct
- TALER_EXCHANGEDB_ReserveHistory *rh,
- struct TALER_Amount *balance);
+TEH_RESPONSE_compile_reserve_history (
+ const struct TALER_EXCHANGEDB_ReserveHistory *rh,
+ struct TALER_Amount *balance);
/**
@@ -60,12 +60,11 @@ TEH_RESPONSE_compile_reserve_history (const struct
* @return MHD result code
*/
int
-TEH_RESPONSE_reply_coin_insufficient_funds (struct MHD_Connection *connection,
- enum TALER_ErrorCode ec,
- const struct
- TALER_CoinSpendPublicKeyP *coin_pub,
- const struct
- TALER_EXCHANGEDB_TransactionList *tl);
+TEH_RESPONSE_reply_coin_insufficient_funds (
+ struct MHD_Connection *connection,
+ enum TALER_ErrorCode ec,
+ const struct TALER_CoinSpendPublicKeyP *coin_pub,
+ const struct TALER_EXCHANGEDB_TransactionList *tl);
/**
@@ -76,10 +75,9 @@ TEH_RESPONSE_reply_coin_insufficient_funds (struct MHD_Connection *connection,
* @return json representation of the @a rh, NULL on error
*/
json_t *
-TEH_RESPONSE_compile_transaction_history (const struct
- TALER_CoinSpendPublicKeyP *coin_pub,
- const struct
- TALER_EXCHANGEDB_TransactionList *tl);
+TEH_RESPONSE_compile_transaction_history (
+ const struct TALER_CoinSpendPublicKeyP *coin_pub,
+ const struct TALER_EXCHANGEDB_TransactionList *tl);
#endif