exchange

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

commit 8d852ba725bebfa7543272873dd8caf112bec851
parent 734c16fe390eda336e56d3b20017335de206af13
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 22 Oct 2025 20:29:14 +0200

fix #9924

Diffstat:
Msrc/auditor/taler-auditor-httpd_deposit-confirmation.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/auditor/taler-auditor-httpd_deposit-confirmation.c b/src/auditor/taler-auditor-httpd_deposit-confirmation.c @@ -342,7 +342,6 @@ TAH_DEPOSIT_CONFIRMATION_handler ( if ((GNUNET_NO == res) || (NULL == json)) return MHD_YES; - dc.master_sig = es.master_sig; res = TALER_MHD_parse_json_data (connection, json, spec); @@ -356,6 +355,7 @@ TAH_DEPOSIT_CONFIRMATION_handler ( json_decref (json); return MHD_YES; /* failure */ } + dc.master_sig = es.master_sig; } num_coins = json_array_size (jcoin_sigs); if (num_coins != json_array_size (jcoin_pubs))