diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-17 15:00:22 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-17 15:00:32 +0100 |
commit | 01456098909a4ebddf5a84729242be235af2fdbb (patch) | |
tree | e06394fcadf2266687b886ec797837a0f90a0b35 /src/include | |
parent | e369dcfc25f1a25c59e0e6dd816397855a45d5bd (diff) |
fix FIXME: total up irregular paybacks and add to report
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_auditordb_plugin.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/include/taler_auditordb_plugin.h b/src/include/taler_auditordb_plugin.h index 18558c692..0ce1d229f 100644 --- a/src/include/taler_auditordb_plugin.h +++ b/src/include/taler_auditordb_plugin.h @@ -1302,6 +1302,8 @@ struct TALER_AUDITORDB_Plugin * @param refund_fee_balance total refund fees collected for this DK * @param risk maximum risk exposure of the exchange * @param payback_loss actual losses from payback (actualized @a risk) + * @param irregular_paybacks paybacks made of non-revoked coins (reduces + * risk, but should never happen) * @return transaction status code */ enum GNUNET_DB_QueryStatus @@ -1313,7 +1315,8 @@ struct TALER_AUDITORDB_Plugin const struct TALER_Amount *melt_fee_balance, const struct TALER_Amount *refund_fee_balance, const struct TALER_Amount *risk, - const struct TALER_Amount *payback_loss); + const struct TALER_Amount *payback_loss, + const struct TALER_Amount *irregular_paybacks); /** @@ -1329,6 +1332,8 @@ struct TALER_AUDITORDB_Plugin * @param refund_fee_balance total refund fees collected for this DK * @param risk maximum risk exposure of the exchange * @param payback_loss actual losses from payback (actualized @a risk) + * @param irregular_paybacks paybacks made of non-revoked coins (reduces + * risk, but should never happen) * @return transaction status code */ enum GNUNET_DB_QueryStatus @@ -1340,7 +1345,8 @@ struct TALER_AUDITORDB_Plugin const struct TALER_Amount *melt_fee_balance, const struct TALER_Amount *refund_fee_balance, const struct TALER_Amount *risk, - const struct TALER_Amount *payback_loss); + const struct TALER_Amount *payback_loss, + const struct TALER_Amount *irregular_paybacks); /** @@ -1355,6 +1361,8 @@ struct TALER_AUDITORDB_Plugin * @param[out] refund_fee_balance total refund fees collected for this DK * @param[out] risk maximum risk exposure of the exchange * @param[out] payback_loss actual losses from payback (actualized @a risk) + * @param[out] irregular_paybacks paybacks made of non-revoked coins (reduces + * risk, but should never happen) * @return transaction status code */ enum GNUNET_DB_QueryStatus @@ -1366,7 +1374,8 @@ struct TALER_AUDITORDB_Plugin struct TALER_Amount *melt_fee_balance, struct TALER_Amount *refund_fee_balance, struct TALER_Amount *risk, - struct TALER_Amount *payback_loss); + struct TALER_Amount *payback_loss, + struct TALER_Amount *irregular_payback); /** |