diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/taler_exchangedb_plugin.h | 16 | ||||
| -rw-r--r-- | src/include/taler_signatures.h | 2 | 
2 files changed, 17 insertions, 1 deletions
| diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index 286162fb..4b90396b 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -2368,6 +2368,22 @@ struct TALER_EXCHANGEDB_Plugin    /** +   * Get the KYC status for a wallet. If the status is unknown, +   * inserts a new status record (hence INsertSELECT). +   * +   * @param cls the @e cls of this struct with the plugin-specific state +   * @param reserve_pub public key of the wallet +   * @param[out] kyc set to the KYC status of the wallet +   * @return transaction status +   */ +  enum GNUNET_DB_QueryStatus +  (*inselect_wallet_kyc_status)( +    void *cls, +    const struct TALER_ReservePublicKeyP *reserve_pub, +    struct TALER_EXCHANGEDB_KycStatus *kyc); + + +  /**     * Insert a incoming transaction into reserves.  New reserves are     * also created through this function.     * diff --git a/src/include/taler_signatures.h b/src/include/taler_signatures.h index 55b30669..17150df6 100644 --- a/src/include/taler_signatures.h +++ b/src/include/taler_signatures.h @@ -1,6 +1,6 @@  /*    This file is part of TALER -  Copyright (C) 2014-2020 Taler Systems SA +  Copyright (C) 2014-2021 Taler Systems SA    TALER is free software; you can redistribute it and/or modify it under the    terms of the GNU General Public License as published by the Free Software | 
