summaryrefslogtreecommitdiff
path: root/src/include/taler_exchangedb_plugin.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-04-04 20:42:26 +0200
committerChristian Grothoff <christian@grothoff.org>2022-04-04 20:42:26 +0200
commit71916414069d18ec5b7d5901d52d62a2aaa1403d (patch)
tree358aa66952249b086fadc200bd3ecf895c62c473 /src/include/taler_exchangedb_plugin.h
parentdf8ff01f2924f557096ec24ff650aefbf7931784 (diff)
downloadexchange-71916414069d18ec5b7d5901d52d62a2aaa1403d.tar.gz
exchange-71916414069d18ec5b7d5901d52d62a2aaa1403d.tar.bz2
exchange-71916414069d18ec5b7d5901d52d62a2aaa1403d.zip
implement more DB functions
Diffstat (limited to 'src/include/taler_exchangedb_plugin.h')
-rw-r--r--src/include/taler_exchangedb_plugin.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h
index 1e56c5e0d..9c9410d66 100644
--- a/src/include/taler_exchangedb_plugin.h
+++ b/src/include/taler_exchangedb_plugin.h
@@ -4502,6 +4502,7 @@ struct TALER_EXCHANGEDB_Plugin
* @param[out] merge_pub public key representing the merge capability
* @param[out] purse_expiration when would an unmerged purse expire
* @param[out] h_contract_terms contract associated with the purse
+ * @param[out] age_limit the age limit for deposits into the purse
* @param[out] target_amount amount to be put into the purse
* @param[out] balance amount put so far into the purse
* @param[out] purse_sig signature of the purse over the initialization data
@@ -4514,6 +4515,7 @@ struct TALER_EXCHANGEDB_Plugin
struct TALER_PurseMergePublicKeyP *merge_pub,
struct GNUNET_TIME_Timestamp *purse_expiration,
struct TALER_PrivateContractHashP *h_contract_terms,
+ uint32_t *age_limit,
struct TALER_Amount *target_amount,
struct TALER_Amount *balance,
struct TALER_PurseContractSignatureP *purse_sig);
@@ -4528,6 +4530,7 @@ struct TALER_EXCHANGEDB_Plugin
* @param[out] purse_pub public key of the purse
* @param[out] purse_expiration when would an unmerged purse expire
* @param[out] h_contract_terms contract associated with the purse
+ * @param[out] age_limit the age limit for deposits into the purse
* @param[out] target_amount amount to be put into the purse
* @param[out] balance amount put so far into the purse
* @param[out] purse_sig signature of the purse over the initialization data
@@ -4540,6 +4543,7 @@ struct TALER_EXCHANGEDB_Plugin
struct TALER_PurseContractPublicKeyP *purse_pub,
struct GNUNET_TIME_Timestamp *purse_expiration,
struct TALER_PrivateContractHashP *h_contract_terms,
+ uint32_t *age_limit,
struct TALER_Amount *target_amount,
struct TALER_Amount *balance,
struct TALER_PurseContractSignatureP *purse_sig);