exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 95e30879841a2925c23b51ff56c0a292a7370674
parent 9a841f60477b45972119fc4137391220575257f5
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 19 Feb 2023 18:32:38 +0100

expose now returned purse_expiration in exchange API

Diffstat:
Msrc/include/taler_exchange_service.h | 6++++++
Msrc/lib/exchange_api_purses_get.c | 2++
2 files changed, 8 insertions(+), 0 deletions(-)

diff --git 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 @@ -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",