summaryrefslogtreecommitdiff
path: root/src/include/taler_exchangedb_plugin.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-04-24 20:49:11 +0200
committerChristian Grothoff <christian@grothoff.org>2022-04-24 20:49:11 +0200
commitb4965db0d26a85787e1fd430e1591c50f8dd1279 (patch)
treefebdd6f7d2a60a8d96de9f56e999a7c1a930e53d /src/include/taler_exchangedb_plugin.h
parentb671d6b25dd469c9065a28d4406f6883da83c4ea (diff)
downloadexchange-b4965db0d26a85787e1fd430e1591c50f8dd1279.tar.gz
exchange-b4965db0d26a85787e1fd430e1591c50f8dd1279.tar.bz2
exchange-b4965db0d26a85787e1fd430e1591c50f8dd1279.zip
-fix fieldnames, regenerated DBs
Diffstat (limited to 'src/include/taler_exchangedb_plugin.h')
-rw-r--r--src/include/taler_exchangedb_plugin.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h
index 1548bf3d8..cf265c106 100644
--- a/src/include/taler_exchangedb_plugin.h
+++ b/src/include/taler_exchangedb_plugin.h
@@ -4690,6 +4690,35 @@ struct TALER_EXCHANGEDB_Plugin
/**
+ * Function called insert request to merge a purse into a reserve by the
+ * respective purse merge key. The purse must not have been merged into a
+ * different reserve.
+ *
+ * @param cls the @e cls of this struct with the plugin-specific state
+ * @param purse_pub purse to merge
+ * @param merge_sig signature affirming the merge
+ * @param merge_timestamp time of the merge
+ * @param reserve_sig signature of the reserve affirming the merge
+ * @param purse_fee amount to charge the reserve for the purse creation
+ * @param reserve_pub public key of the reserve to credit
+ * @param[out] in_conflict set to true if @a purse_pub was merged into a different reserve already
+ * @param[out] insufficient_funds set to true if @a reserve_pub has insufficient capacity to create another purse
+ * @return transaction status code
+ */
+ enum GNUNET_DB_QueryStatus
+ (*do_reserve_purse)(
+ void *cls,
+ const struct TALER_PurseContractPublicKeyP *purse_pub,
+ const struct TALER_PurseMergeSignatureP *merge_sig,
+ const struct GNUNET_TIME_Timestamp merge_timestamp,
+ const struct TALER_ReserveSignatureP *reserve_sig,
+ const struct TALER_Amount *purse_fee,
+ const struct TALER_ReservePublicKeyP *reserve_pub,
+ bool *in_conflict,
+ bool *insufficient_funds);
+
+
+ /**
* Function called to approve merging of a purse with
* an account, made by the receiving account.
*