diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-09-24 19:03:37 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-09-24 19:03:37 +0200 |
commit | 08b2623684a09bf5bb1e30282b1fd314df02b3e7 (patch) | |
tree | 17459816875abcfb42b6d79d8ff18767a2148b24 /src/backend/taler-merchant-httpd_private-get-orders-ID.c | |
parent | cc15874189dcfb4336921559ce94f4234daa3ca2 (diff) |
combine deposit confirmation signatures into one big signature
Diffstat (limited to 'src/backend/taler-merchant-httpd_private-get-orders-ID.c')
-rw-r--r-- | src/backend/taler-merchant-httpd_private-get-orders-ID.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/backend/taler-merchant-httpd_private-get-orders-ID.c b/src/backend/taler-merchant-httpd_private-get-orders-ID.c index f732dc84..20ed5fa7 100644 --- a/src/backend/taler-merchant-httpd_private-get-orders-ID.c +++ b/src/backend/taler-merchant-httpd_private-get-orders-ID.c @@ -804,13 +804,14 @@ process_refunds_cb (void *cls, * @a wtid over the total amount happened? */ static void -process_transfer_details (void *cls, - const struct TALER_WireTransferIdentifierRawP *wtid, - const char *exchange_url, - struct GNUNET_TIME_Timestamp execution_time, - const struct TALER_Amount *deposit_value, - const struct TALER_Amount *deposit_fee, - bool transfer_confirmed) +process_transfer_details ( + void *cls, + const struct TALER_WireTransferIdentifierRawP *wtid, + const char *exchange_url, + struct GNUNET_TIME_Timestamp execution_time, + const struct TALER_Amount *deposit_value, + const struct TALER_Amount *deposit_fee, + bool transfer_confirmed) { struct GetOrderRequestContext *gorc = cls; json_t *wire_details = gorc->wire_details; |