exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit aff527d19304d046c12598b41112d8cec0066742
parent 30ed0d9a4f0f5e455814600f26f182406a7b4eed
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 13 Aug 2026 18:37:00 +0200

also propagate error up

Diffstat:
Msrc/exchangedb/update_legitimization_process_by_row.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/exchangedb/update_legitimization_process_by_row.c b/src/exchangedb/update_legitimization_process_by_row.c @@ -124,9 +124,12 @@ TALER_EXCHANGEDB_update_legitimization_process_by_row ( "update_legitimization_process_by_row_alert_kyc", params2); if (qs2 < 0) + { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to store KYC alert: %d\n", qs2); + return qs2; + } } return qs; }