summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-11-12 14:47:26 +0100
committerChristian Grothoff <christian@grothoff.org>2023-11-12 14:47:26 +0100
commit87f3f5230f7bbcb02e5b54d66ad3cd2e51ac3c08 (patch)
tree7a025cb54595e128e840aa42c7b4952bc0f9f63f /src
parent1b7a1d5c586feeca84095a8dd7c9dda068b76acd (diff)
downloadexchange-87f3f5230f7bbcb02e5b54d66ad3cd2e51ac3c08.tar.gz
exchange-87f3f5230f7bbcb02e5b54d66ad3cd2e51ac3c08.tar.bz2
exchange-87f3f5230f7bbcb02e5b54d66ad3cd2e51ac3c08.zip
fix argument order
Diffstat (limited to 'src')
-rw-r--r--src/exchange/taler-exchange-httpd_kyc-webhook.c2
-rw-r--r--src/exchangedb/pg_kyc_provider_account_lookup.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd_kyc-webhook.c b/src/exchange/taler-exchange-httpd_kyc-webhook.c
index cf49a20dc..76adfcd83 100644
--- a/src/exchange/taler-exchange-httpd_kyc-webhook.c
+++ b/src/exchange/taler-exchange-httpd_kyc-webhook.c
@@ -314,7 +314,7 @@ handler_kyc_webhook_generic (
TALER_EC_EXCHANGE_KYC_GENERIC_LOGIC_UNKNOWN,
args[0]);
}
- GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"KYC logic `%s' mapped to section %s\n",
args[0],
kwh->provider_section);
diff --git a/src/exchangedb/pg_kyc_provider_account_lookup.c b/src/exchangedb/pg_kyc_provider_account_lookup.c
index cca3ab547..f9db2cbc1 100644
--- a/src/exchangedb/pg_kyc_provider_account_lookup.c
+++ b/src/exchangedb/pg_kyc_provider_account_lookup.c
@@ -36,8 +36,8 @@ TEH_PG_kyc_provider_account_lookup (
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {
- GNUNET_PQ_query_param_string (provider_section),
GNUNET_PQ_query_param_string (provider_legitimization_id),
+ GNUNET_PQ_query_param_string (provider_section),
GNUNET_PQ_query_param_end
};
struct GNUNET_PQ_ResultSpec rs[] = {