aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-02-19 18:32:38 +0100
committerChristian Grothoff <christian@grothoff.org>2023-02-19 18:32:38 +0100
commit95e30879841a2925c23b51ff56c0a292a7370674 (patch)
treed24bd07ba6dee523f344cd8a5183728dff67b377 /src
parent9a841f60477b45972119fc4137391220575257f5 (diff)
downloadexchange-95e30879841a2925c23b51ff56c0a292a7370674.tar.xz
expose now returned purse_expiration in exchange API
Diffstat (limited to 'src')
-rw-r--r--src/include/taler_exchange_service.h6
-rw-r--r--src/lib/exchange_api_purses_get.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h
index 5cfe6a98e..2bf71a17e 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -5192,6 +5192,7 @@ struct TALER_EXCHANGE_PurseGetResponse
*/
struct
{
+
/**
* Time when the purse was merged (or zero if it
* was not merged).
@@ -5211,6 +5212,11 @@ struct TALER_EXCHANGE_PurseGetResponse
*/
struct TALER_Amount balance;
+ /**
+ * Time when the purse will expire.
+ */
+ struct GNUNET_TIME_Timestamp purse_expiration;
+
} success;
} details;
diff --git a/src/lib/exchange_api_purses_get.c b/src/lib/exchange_api_purses_get.c
index be142e39c..5d63ecf13 100644
--- a/src/lib/exchange_api_purses_get.c
+++ b/src/lib/exchange_api_purses_get.c
@@ -109,6 +109,8 @@ handle_purse_get_finished (void *cls,
&no_deposit),
TALER_JSON_spec_amount_any ("balance",
&dr.details.success.balance),
+ GNUNET_JSON_spec_timestamp ("purse_expiration",
+ &dr.details.success.purse_expiration),
GNUNET_JSON_spec_fixed_auto ("exchange_pub",
&exchange_pub),
GNUNET_JSON_spec_fixed_auto ("exchange_sig",