diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-10-20 18:56:59 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-10-20 18:56:59 +0200 |
commit | 9adb9cfe6108c783f8154c4db9375b679ebaaa4a (patch) | |
tree | b921620fe34f3b7515e97e0c5d2f4acf45be7f6f /src/include | |
parent | c353cabe07959b4f4900d9981645af8339759564 (diff) |
simplify deposit, do not return kyc status, not needed
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchange_service.h | 5 | ||||
-rw-r--r-- | src/include/taler_json_lib.h | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index 9d48f9d9d..0b6243916 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -840,11 +840,6 @@ struct TALER_EXCHANGE_DepositResult */ const char *transaction_base_url; - /** - * Payment target that the merchant should use - * to check for its KYC status. - */ - uint64_t payment_target_uuid; } success; /** diff --git a/src/include/taler_json_lib.h b/src/include/taler_json_lib.h index 3581252ca..068dea7d5 100644 --- a/src/include/taler_json_lib.h +++ b/src/include/taler_json_lib.h @@ -503,7 +503,7 @@ TALER_JSON_get_error_code2 (const void *data, * @param[out] hc set to the hash * @return #GNUNET_OK on success, #GNUNET_SYSERR if @a wire_s is malformed */ -int +enum GNUNET_GenericReturnValue TALER_JSON_merchant_wire_signature_hash (const json_t *wire_s, struct GNUNET_HashCode *hc); @@ -516,7 +516,7 @@ TALER_JSON_merchant_wire_signature_hash (const json_t *wire_s, * @param master_pub master public key of the exchange * @return #GNUNET_OK if signature is valid */ -int +enum GNUNET_GenericReturnValue TALER_JSON_exchange_wire_signature_check ( const json_t *wire_s, const struct TALER_MasterPublicKeyP *master_pub); |