diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-07-31 23:46:09 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-07-31 23:46:09 +0200 |
commit | 56f114995ab90c23b72900d9209510bebd707809 (patch) | |
tree | f9fa823dbc1367046519fdf1c5be02542573b81f /src | |
parent | 7d19f9856043179a93f198321cd973d71ea625fd (diff) |
-improve types
Diffstat (limited to 'src')
-rw-r--r-- | src/include/taler_exchange_service.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index 6d336752f..2bd96d1c4 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -4304,7 +4304,7 @@ struct TALER_EXCHANGE_AccountKycStatus * Array of length @e limits_array with (exposed) limits that apply to the * account. */ - struct TALER_EXCHANGE_AccountLimit *limits; + const struct TALER_EXCHANGE_AccountLimit *limits; /** * Access token the user needs to start a KYC process. @@ -4386,7 +4386,8 @@ TALER_EXCHANGE_kyc_check ( * @param kyc handle for operation to cancel */ void -TALER_EXCHANGE_kyc_check_cancel (struct TALER_EXCHANGE_KycCheckHandle *kyc); +TALER_EXCHANGE_kyc_check_cancel ( + struct TALER_EXCHANGE_KycCheckHandle *kyc); /** |