diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-06-29 14:08:19 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-06-29 14:08:19 +0200 |
commit | dc691eb596b61bbf26d9b38cf245c1188f056f51 (patch) | |
tree | f6062808c650d16408ef262ff0ff2be4f681e5e4 /src/exchange/taler-exchange-httpd_common_deposit.h | |
parent | 9902e88b2d9dceb948275cf17b7ff62002da6fe3 (diff) |
-rename, as logic is purse deposit specific
Diffstat (limited to 'src/exchange/taler-exchange-httpd_common_deposit.h')
-rw-r--r-- | src/exchange/taler-exchange-httpd_common_deposit.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/exchange/taler-exchange-httpd_common_deposit.h b/src/exchange/taler-exchange-httpd_common_deposit.h index d6940c5d..10fd7e8b 100644 --- a/src/exchange/taler-exchange-httpd_common_deposit.h +++ b/src/exchange/taler-exchange-httpd_common_deposit.h @@ -32,7 +32,7 @@ /** * Information about an individual coin being deposited. */ -struct TEH_DepositedCoin +struct TEH_PurseDepositedCoin { /** * Public information about the coin. @@ -93,9 +93,9 @@ struct TEH_DepositedCoin * #GNUNET_SYSERR on failure and no error could be returned */ enum GNUNET_GenericReturnValue -TEH_common_deposit_parse_coin ( +TEH_common_purse_deposit_parse_coin ( struct MHD_Connection *connection, - struct TEH_DepositedCoin *coin, + struct TEH_PurseDepositedCoin *coin, const json_t *jcoin); @@ -113,7 +113,7 @@ TEH_common_deposit_parse_coin ( enum GNUNET_GenericReturnValue TEH_common_deposit_check_purse_deposit ( struct MHD_Connection *connection, - const struct TEH_DepositedCoin *coin, + const struct TEH_PurseDepositedCoin *coin, const struct TALER_PurseContractPublicKeyP *purse_pub, uint32_t min_age); @@ -125,6 +125,6 @@ TEH_common_deposit_check_purse_deposit ( * @param[in] coin information to release */ void -TEH_common_deposit_free_coin (struct TEH_DepositedCoin *coin); +TEH_common_purse_deposit_free_coin (struct TEH_PurseDepositedCoin *coin); #endif |