diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-07-31 23:39:55 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-07-31 23:39:55 +0200 |
commit | c10874a858745b4205feabb38ed8f5e8bd11acc1 (patch) | |
tree | 1aa235f8e543ec5e2055bd6ac8b521b44b3840c2 /src/backenddb/pg_account_kyc_set_status.h | |
parent | 854bad7d7c220c9ea9f4d61eb8fd46548a160da2 (diff) |
fix account_kyc_set_status
Diffstat (limited to 'src/backenddb/pg_account_kyc_set_status.h')
-rw-r--r-- | src/backenddb/pg_account_kyc_set_status.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/backenddb/pg_account_kyc_set_status.h b/src/backenddb/pg_account_kyc_set_status.h index 84abe48a..cc1f85b5 100644 --- a/src/backenddb/pg_account_kyc_set_status.h +++ b/src/backenddb/pg_account_kyc_set_status.h @@ -34,6 +34,12 @@ * @param exchange_url base URL of the exchange to check * @param exchange_kyc_serial serial number for our account at the exchange (0 if unknown) * @param timestamp timestamp to store + * @param exchange_http_status HTTP status code returned last by the exchange + * @param exchange_ec_code Taler error code returned last by the exchange + * @param access_token access token for the KYC process, NULL for none + * @param num_limits length of the @a limits array + * @param limits array with deposit limits returned by the exchange + * @param in_aml_review true if the exchange says the account is under review * @param kyc_ok current KYC status (true for satisfied) * @return database result code */ @@ -45,6 +51,12 @@ TMH_PG_account_kyc_set_status ( const char *exchange_url, uint64_t exchange_kyc_serial, struct GNUNET_TIME_Timestamp timestamp, + unsigned int exchage_http_status, + enum TALER_ErrorCode exchange_ec_code, + const struct TALER_AccountAccessTokenP *access_token, + unsigned int num_limits, + const struct TALER_MERCHANTDB_DepositLimits *limits, + bool in_aml_review, bool kyc_ok); #endif |