aboutsummaryrefslogtreecommitdiff
path: root/src/include/taler_auditordb_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/taler_auditordb_plugin.h')
-rw-r--r--src/include/taler_auditordb_plugin.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/include/taler_auditordb_plugin.h b/src/include/taler_auditordb_plugin.h
index bb59bf9c3..52cd016da 100644
--- a/src/include/taler_auditordb_plugin.h
+++ b/src/include/taler_auditordb_plugin.h
@@ -1007,6 +1007,7 @@ struct TALER_AUDITORDB_Plugin
1007 * @param withdraw_fee_balance amount the exchange gained in withdraw fees 1007 * @param withdraw_fee_balance amount the exchange gained in withdraw fees
1008 * due to withdrawals from this reserve 1008 * due to withdrawals from this reserve
1009 * @param expiration_date expiration date of the reserve 1009 * @param expiration_date expiration date of the reserve
1010 * @param origin_account where did the money in the reserve originally come from
1010 * @return transaction status code 1011 * @return transaction status code
1011 */ 1012 */
1012 enum GNUNET_DB_QueryStatus 1013 enum GNUNET_DB_QueryStatus
@@ -1016,7 +1017,8 @@ struct TALER_AUDITORDB_Plugin
1016 const struct TALER_MasterPublicKeyP *master_pub, 1017 const struct TALER_MasterPublicKeyP *master_pub,
1017 const struct TALER_Amount *reserve_balance, 1018 const struct TALER_Amount *reserve_balance,
1018 const struct TALER_Amount *withdraw_fee_balance, 1019 const struct TALER_Amount *withdraw_fee_balance,
1019 struct GNUNET_TIME_Absolute expiration_date); 1020 struct GNUNET_TIME_Absolute expiration_date,
1021 const char *origin_account);
1020 1022
1021 1023
1022 /** 1024 /**
@@ -1055,6 +1057,7 @@ struct TALER_AUDITORDB_Plugin
1055 * @param[out] withdraw_fee_balance amount the exchange gained in withdraw fees 1057 * @param[out] withdraw_fee_balance amount the exchange gained in withdraw fees
1056 * due to withdrawals from this reserve 1058 * due to withdrawals from this reserve
1057 * @param[out] expiration_date expiration date of the reserve 1059 * @param[out] expiration_date expiration date of the reserve
1060 * @param[out] sender_account from where did the money in the reserve originally come from
1058 * @return transaction status code 1061 * @return transaction status code
1059 */ 1062 */
1060 enum GNUNET_DB_QueryStatus 1063 enum GNUNET_DB_QueryStatus
@@ -1065,7 +1068,8 @@ struct TALER_AUDITORDB_Plugin
1065 uint64_t *rowid, 1068 uint64_t *rowid,
1066 struct TALER_Amount *reserve_balance, 1069 struct TALER_Amount *reserve_balance,
1067 struct TALER_Amount *withdraw_fee_balance, 1070 struct TALER_Amount *withdraw_fee_balance,
1068 struct GNUNET_TIME_Absolute *expiration_date); 1071 struct GNUNET_TIME_Absolute *expiration_date,
1072 char **sender_account);
1069 1073
1070 1074
1071 /** 1075 /**