summaryrefslogtreecommitdiff
path: root/src/include/taler_merchant_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-04-09 17:45:08 +0200
committerChristian Grothoff <christian@grothoff.org>2024-04-09 17:45:08 +0200
commit5b0f4ae9e68c3f5065c2c62bed7c7d3bc0b4423a (patch)
treedc2301c91223601b5f76b1a8289e137df9f3ccfa /src/include/taler_merchant_service.h
parent714b0ef777cf0ef736a80f070936716609ccade3 (diff)
downloadmerchant-5b0f4ae9e68c3f5065c2c62bed7c7d3bc0b4423a.tar.gz
merchant-5b0f4ae9e68c3f5065c2c62bed7c7d3bc0b4423a.tar.bz2
merchant-5b0f4ae9e68c3f5065c2c62bed7c7d3bc0b4423a.zip
implement protocol v14 / fix #8717
Diffstat (limited to 'src/include/taler_merchant_service.h')
-rw-r--r--src/include/taler_merchant_service.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/include/taler_merchant_service.h b/src/include/taler_merchant_service.h
index 263a6fec..43d67aff 100644
--- a/src/include/taler_merchant_service.h
+++ b/src/include/taler_merchant_service.h
@@ -34,7 +34,7 @@
/**
* Library version (in hex) for compatibility tests.
*/
-#define TALER_MERCHANT_SERVICE_VERSION 0x00090403
+#define TALER_MERCHANT_SERVICE_VERSION 0x00100000
/**
@@ -949,7 +949,7 @@ TALER_MERCHANT_instance_delete_cancel (
* @param arg request to cancel.
*/
#define TALER_MERCHANT_instance_purge_cancel(arg) \
- TALER_MERCHANT_instance_delete_cancel (arg)
+ TALER_MERCHANT_instance_delete_cancel (arg)
/* *************** Accounts **************** */
@@ -2664,6 +2664,12 @@ struct TALER_MERCHANT_OrderStatusResponse
*/
bool wired;
+ /**
+ * Time of the last payment made on this order.
+ * Only availalbe if the server supports protocol
+ * **v14** or higher, otherwise zero.
+ */
+ struct GNUNET_TIME_Timestamp last_payment;
} paid;
/**