summaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_update_wire.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-03-08 22:53:35 +0100
committerChristian Grothoff <christian@grothoff.org>2024-03-08 22:53:35 +0100
commit19c368fc47192f44d1cf9e651d9360c4546b2807 (patch)
treec750e3a06119aa27b00c54890e5db09b1e1d0f4b /src/exchangedb/pg_update_wire.h
parent1beb3e72899aea2ca0b8cf3855be94575d7977c0 (diff)
downloadexchange-19c368fc47192f44d1cf9e651d9360c4546b2807.tar.gz
exchange-19c368fc47192f44d1cf9e651d9360c4546b2807.tar.bz2
exchange-19c368fc47192f44d1cf9e651d9360c4546b2807.zip
implement protocol v19 in taler-exchange-httpd (for #8000); note that taler-exchange-offline support is still missing
Diffstat (limited to 'src/exchangedb/pg_update_wire.h')
-rw-r--r--src/exchangedb/pg_update_wire.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/exchangedb/pg_update_wire.h b/src/exchangedb/pg_update_wire.h
index 9c30816e6..a596a0802 100644
--- a/src/exchangedb/pg_update_wire.h
+++ b/src/exchangedb/pg_update_wire.h
@@ -37,6 +37,8 @@
* @param change_date date when the account status was last changed
* (only to be used for replay detection)
* @param master_sig master signature to store, can be NULL (if @a enabled is false)
+ * @param bank_label label to show this entry under in the UI, can be NULL
+ * @param priority determines order in which entries are shown in the UI
* @param enabled true to enable, false to disable (the actual change)
* @return transaction status code
*/
@@ -48,6 +50,8 @@ TEH_PG_update_wire (void *cls,
const json_t *credit_restrictions,
struct GNUNET_TIME_Timestamp change_date,
const struct TALER_MasterSignatureP *master_sig,
+ const char *bank_label,
+ int64_t priority,
bool enabled);
#endif