exchange

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

commit 4e1770898a1de84dcfb4231ca89b1983f12e6c6a
parent cf67e601342bafea2ab6dc9d0aae10610c3a0004
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 24 Feb 2021 16:29:31 +0100

fix statement order

Diffstat:
Msrc/exchange/taler-exchange-httpd_keys.c | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd_keys.c b/src/exchange/taler-exchange-httpd_keys.c @@ -1676,9 +1676,9 @@ build_key_state (struct HelperState *hs, true); return NULL; } - qs = TEH_plugin->iterate_active_auditors (TEH_plugin->cls, - &auditor_info_cb, - ksh); + qs = TEH_plugin->iterate_auditor_denominations (TEH_plugin->cls, + &auditor_denom_cb, + ksh); if (qs < 0) { GNUNET_break (0); @@ -1686,9 +1686,9 @@ build_key_state (struct HelperState *hs, true); return NULL; } - qs = TEH_plugin->iterate_auditor_denominations (TEH_plugin->cls, - &auditor_denom_cb, - ksh); + qs = TEH_plugin->iterate_active_auditors (TEH_plugin->cls, + &auditor_info_cb, + ksh); if (qs < 0) { GNUNET_break (0);