From 4e1770898a1de84dcfb4231ca89b1983f12e6c6a Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 24 Feb 2021 16:29:31 +0100 Subject: fix statement order --- src/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 index 9245c8129..1acffb1a3 100644 --- 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); -- cgit v1.2.3