summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-05-23 15:29:35 +0200
committerChristian Grothoff <christian@grothoff.org>2022-05-23 15:29:35 +0200
commita509a91f924cad3b5f0336f78e5c80e3621ad52b (patch)
tree404bfdbbd566478a158aa60e957bff37bc16364e /src/util
parentcdd2930a9951a552d221b8a8b8e9c0df35ad8be2 (diff)
downloadexchange-a509a91f924cad3b5f0336f78e5c80e3621ad52b.tar.gz
exchange-a509a91f924cad3b5f0336f78e5c80e3621ad52b.tar.bz2
exchange-a509a91f924cad3b5f0336f78e5c80e3621ad52b.zip
-more reserve history fixes
Diffstat (limited to 'src/util')
-rw-r--r--src/util/exchange_signatures.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/util/exchange_signatures.c b/src/util/exchange_signatures.c
index 5c72289e1..68c0fdb0a 100644
--- a/src/util/exchange_signatures.c
+++ b/src/util/exchange_signatures.c
@@ -1301,11 +1301,6 @@ struct TALER_PurseCreateDepositConfirmationPS
struct TALER_PurseContractPublicKeyP purse_pub;
/**
- * Public key of the merge capability.
- */
- struct TALER_PurseMergePublicKeyP merge_pub;
-
- /**
* Hash of the contract of the purse.
*/
struct TALER_PrivateContractHashP h_contract_terms;
@@ -1323,7 +1318,6 @@ TALER_exchange_online_purse_created_sign (
const struct TALER_Amount *amount_without_fee,
const struct TALER_Amount *total_deposited,
const struct TALER_PurseContractPublicKeyP *purse_pub,
- const struct TALER_PurseMergePublicKeyP *merge_pub,
const struct TALER_PrivateContractHashP *h_contract_terms,
struct TALER_ExchangePublicKeyP *pub,
struct TALER_ExchangeSignatureP *sig)
@@ -1333,7 +1327,6 @@ TALER_exchange_online_purse_created_sign (
.purpose.size = htonl (sizeof (dc)),
.h_contract_terms = *h_contract_terms,
.purse_pub = *purse_pub,
- .merge_pub = *merge_pub,
.purse_expiration = GNUNET_TIME_timestamp_hton (purse_expiration),
.exchange_time = GNUNET_TIME_timestamp_hton (exchange_time)
};
@@ -1355,7 +1348,6 @@ TALER_exchange_online_purse_created_verify (
const struct TALER_Amount *amount_without_fee,
const struct TALER_Amount *total_deposited,
const struct TALER_PurseContractPublicKeyP *purse_pub,
- const struct TALER_PurseMergePublicKeyP *merge_pub,
const struct TALER_PrivateContractHashP *h_contract_terms,
const struct TALER_ExchangePublicKeyP *pub,
const struct TALER_ExchangeSignatureP *sig)
@@ -1365,7 +1357,6 @@ TALER_exchange_online_purse_created_verify (
.purpose.size = htonl (sizeof (dc)),
.h_contract_terms = *h_contract_terms,
.purse_pub = *purse_pub,
- .merge_pub = *merge_pub,
.purse_expiration = GNUNET_TIME_timestamp_hton (purse_expiration),
.exchange_time = GNUNET_TIME_timestamp_hton (exchange_time)
};