summaryrefslogtreecommitdiff
path: root/src/include/taler_auditordb_plugin.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-06-08 17:05:51 +0200
committerChristian Grothoff <christian@grothoff.org>2022-06-08 17:05:51 +0200
commitf3ceeb00ea81833433a781bc412bb539c453cd24 (patch)
tree9de3766d0bfd1b43c0f4b0e53d991a7b67f83d74 /src/include/taler_auditordb_plugin.h
parent7700f6ff883b48b3049f5bdfc7eb0cb86e6b9d25 (diff)
downloadexchange-f3ceeb00ea81833433a781bc412bb539c453cd24.tar.gz
exchange-f3ceeb00ea81833433a781bc412bb539c453cd24.tar.bz2
exchange-f3ceeb00ea81833433a781bc412bb539c453cd24.zip
-expand auditordb to track progress for p2p payments
Diffstat (limited to 'src/include/taler_auditordb_plugin.h')
-rw-r--r--src/include/taler_auditordb_plugin.h31
1 files changed, 30 insertions, 1 deletions
diff --git a/src/include/taler_auditordb_plugin.h b/src/include/taler_auditordb_plugin.h
index 71cd79808..7a801c68e 100644
--- a/src/include/taler_auditordb_plugin.h
+++ b/src/include/taler_auditordb_plugin.h
@@ -1,6 +1,6 @@
/*
This file is part of TALER
- Copyright (C) 2014-2021 Taler Systems SA
+ Copyright (C) 2014-2022 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
@@ -157,6 +157,30 @@ struct TALER_AUDITORDB_ProgressPointReserve
*/
uint64_t last_reserve_close_serial_id;
+ /**
+ * serial ID of the last purse_merges
+ * entry the auditor processed.
+ */
+ uint64_t last_purse_merges_serial_id;
+
+ /**
+ * serial ID of the last account_merges
+ * entry the auditor processed.
+ */
+ uint64_t last_account_merges_serial_id;
+
+ /**
+ * serial ID of the last history_requests
+ * entry the auditor processed.
+ */
+ uint64_t last_history_requests_serial_id;
+
+ /**
+ * serial ID of the last close_requests
+ * entry the auditor processed.
+ */
+ uint64_t last_close_requests_serial_id;
+
};
@@ -224,6 +248,11 @@ struct TALER_AUDITORDB_ProgressPointCoin
*/
uint64_t last_recoup_refresh_serial_id;
+ /**
+ * Serial ID of the last purse_deposits operation the auditor processed.
+ */
+ uint64_t last_purse_deposits_serial_id;
+
};