diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-08-19 09:31:51 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-08-19 09:31:51 +0200 |
commit | 2c4bd1e1d0094b93588a5c35205d54e9eac60f03 (patch) | |
tree | 9dbddb18e52d76a254c6dd64e6ecadaf9318b984 /src/include | |
parent | 9c1f1c76be598baeb7cc14d4c63e9815ad78d22f (diff) |
add user type to kyc-check
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchange_service.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index a3e0fffce..dac20d064 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -25,6 +25,7 @@ #include <jansson.h> #include "taler_util.h" #include "taler_error_codes.h" +#include "taler_kyclogic_lib.h" #include <gnunet/gnunet_curl_lib.h> @@ -3425,6 +3426,7 @@ typedef void * @param eh exchange handle to use * @param legitimization_uuid number identifying the legitimization process * @param h_payto hash of the payto:// URI at @a payment_target + * @param ut type of the entity performing the KYC check * @param timeout how long to wait for a positive KYC status * @param cb function to call with the result * @param cb_cls closure for @a cb @@ -3434,6 +3436,7 @@ struct TALER_EXCHANGE_KycCheckHandle * TALER_EXCHANGE_kyc_check (struct TALER_EXCHANGE_Handle *eh, uint64_t legitimization_uuid, const struct TALER_PaytoHashP *h_payto, + enum TALER_KYCLOGIC_KycUserType ut, struct GNUNET_TIME_Relative timeout, TALER_EXCHANGE_KycStatusCallback cb, void *cb_cls); |