diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-07-31 21:54:29 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-07-31 21:54:29 +0200 |
commit | 31bfe5234e9f1031306ce7cfae9a8a3fee5aa304 (patch) | |
tree | 0cda3cc1ef29226156c2774cd1d9f6f1957c495d /src/include/taler_exchangedb_plugin.h | |
parent | af6a9a95469f98172c53ca10167210d41803bfb9 (diff) |
-update auditor schema in preparation to fix #4960
Diffstat (limited to 'src/include/taler_exchangedb_plugin.h')
-rw-r--r-- | src/include/taler_exchangedb_plugin.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index 2ffa84866..5a5e8cab2 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -5546,6 +5546,30 @@ struct TALER_EXCHANGEDB_Plugin /** + * Function called to get information about a profit drain event. + * + * @param cls the @e cls of this struct with the plugin-specific state + * @param wtid wire transfer ID to look up drain event for + * @param[out] serial set to serial ID of the entry + * @param[out] account_section set to account to drain + * @param[out] payto_uri set to account to wire funds to + * @param[out] request_timestamp set to time of the signature + * @param[out] amount set to amount to wire + * @param[out] master_sig set to signature affirming the operation + * @return transaction status code + */ + enum GNUNET_DB_QueryStatus + (*get_drain_profit)(void *cls, + const struct TALER_WireTransferIdentifierRawP *wtid, + uint64_t *serial, + char **account_section, + char **payto_uri, + struct GNUNET_TIME_Timestamp *request_timestamp, + struct TALER_Amount *amount, + struct TALER_MasterSignatureP *master_sig); + + + /** * Get profit drain operation ready to execute. * * @param cls the @e cls of this struct with the plugin-specific state |