aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-01-16 11:25:18 +0100
committerChristian Grothoff <christian@grothoff.org>2023-01-16 11:25:18 +0100
commitd5619de525930cf76e5ff6bce3418e5b478dbe9f (patch)
tree71b5f6aa56ae8ebb158d1c926cc65db5cdd9d751 /src/include
parent6231c365fdd7b13032dffbebb94be62e2ef34455 (diff)
downloadexchange-d5619de525930cf76e5ff6bce3418e5b478dbe9f.tar.xz
fix test_kyc_api: adapt test logic to improved OAuth2.0 kyc API:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_exchange_service.h3
-rw-r--r--src/include/taler_testing_lib.h2
2 files changed, 1 insertions, 4 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h
index 938b74457..b2d0bf710 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -3600,8 +3600,7 @@ struct TALER_EXCHANGE_KycProofHandle;
* @param h_payto hash of payto URI identifying the target account
* @param logic name of the KYC logic to run
* @param args additional args to pass, can be NULL
- * or a string to append to the URL. Must
- * then begin with '/' or '?'.
+ * or a string to append to the URL. Must then begin with '&'.
* @param cb function to call with the result
* @param cb_cls closure for @a cb
* @return NULL on error
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h
index 0418ab17e..846be4183 100644
--- a/src/include/taler_testing_lib.h
+++ b/src/include/taler_testing_lib.h
@@ -2535,7 +2535,6 @@ TALER_TESTING_cmd_check_kyc_get (const char *label,
* @param logic_section name of the KYC provider section
* in the exchange configuration for this proof
* @param code OAuth 2.0 code to use
- * @param state OAuth 2.0 state to use
* @param expected_response_code expected HTTP status
* @return the command
*/
@@ -2545,7 +2544,6 @@ TALER_TESTING_cmd_proof_kyc_oauth2 (
const char *payment_target_reference,
const char *logic_section,
const char *code,
- const char *state,
unsigned int expected_response_code);