diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-09-05 13:30:04 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-09-05 13:30:04 +0200 |
commit | a666b706247f7e2b152a396999f0c9e787190b30 (patch) | |
tree | 8e999c74e50e757c65a4f9a71e4aff2e7a032a63 /src/lib | |
parent | c39040ad2c4939b21d6ad57240a8a47dbc8f68e3 (diff) |
exchange-side implementation of #9156
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/exchange_api_add_aml_decision.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/exchange_api_add_aml_decision.c b/src/lib/exchange_api_add_aml_decision.c index abd348c4a..e60b88c6c 100644 --- a/src/lib/exchange_api_add_aml_decision.c +++ b/src/lib/exchange_api_add_aml_decision.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2023 Taler Systems SA + Copyright (C) 2023, 2024 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -128,6 +128,7 @@ TALER_EXCHANGE_post_aml_decision ( struct GNUNET_CURL_Context *ctx, const char *url, const struct TALER_PaytoHashP *h_payto, + const char *payto_uri, struct GNUNET_TIME_Timestamp decision_time, const char *successor_measure, const char *new_measures, @@ -269,6 +270,9 @@ TALER_EXCHANGE_post_aml_decision ( justification), GNUNET_JSON_pack_data_auto ("h_payto", h_payto), + GNUNET_JSON_pack_allow_null ( + GNUNET_JSON_pack_string ("payto_uri", + payto_uri)), GNUNET_JSON_pack_object_steal ("new_rules", new_rules), GNUNET_JSON_pack_object_incref ("properties", |