summaryrefslogtreecommitdiff
path: root/src/include/taler_exchange_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-02-04 21:54:47 +0100
committerChristian Grothoff <christian@grothoff.org>2023-02-04 21:54:47 +0100
commit5a18e955ebd663a6e1318378002a6368a7c07566 (patch)
tree9f1d6349f36bf053253382705e2032e8e738c5ba /src/include/taler_exchange_service.h
parent47b9ef598dc33e10294c1af4c7cf0e2ac71f553e (diff)
downloadexchange-5a18e955ebd663a6e1318378002a6368a7c07566.tar.gz
exchange-5a18e955ebd663a6e1318378002a6368a7c07566.tar.bz2
exchange-5a18e955ebd663a6e1318378002a6368a7c07566.zip
-fix AML decision update logic and history fetch logic
Diffstat (limited to 'src/include/taler_exchange_service.h')
-rw-r--r--src/include/taler_exchange_service.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h
index 2d57b6530..bfdc062b5 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -4305,9 +4305,9 @@ TALER_EXCHANGE_management_update_aml_officer_cancel (
struct TALER_EXCHANGE_AmlDecisionSummary
{
/**
- * When was the last decision made.
+ * What is the current monthly threshold.
*/
- struct GNUNET_TIME_Timestamp last_decision_time;
+ struct TALER_Amount threshold;
/**
* Account the decision was made for.
@@ -4315,6 +4315,11 @@ struct TALER_EXCHANGE_AmlDecisionSummary
struct TALER_PaytoHashP h_payto;
/**
+ * RowID of this decision.
+ */
+ uint64_t rowid;
+
+ /**
* Current decision state.
*/
enum TALER_AmlDecisionState current_state;