diff options
Diffstat (limited to 'src/util/wallet_signatures.c')
-rw-r--r-- | src/util/wallet_signatures.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/util/wallet_signatures.c b/src/util/wallet_signatures.c index c46dd670..bc4903e0 100644 --- a/src/util/wallet_signatures.c +++ b/src/util/wallet_signatures.c @@ -157,7 +157,6 @@ enum GNUNET_GenericReturnValue TALER_wallet_recoup_verify ( const struct TALER_DenominationHash *h_denom_pub, const union TALER_DenominationBlindingKeyP *coin_bks, - const struct TALER_Amount *requested_amount, const struct TALER_CoinSpendPublicKeyP *coin_pub, const struct TALER_CoinSpendSignatureP *coin_sig) { @@ -168,8 +167,6 @@ TALER_wallet_recoup_verify ( .coin_blind = *coin_bks }; - TALER_amount_hton (&pr.recoup_amount, - requested_amount); return GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_RECOUP, &pr, &coin_sig->eddsa_signature, @@ -181,7 +178,6 @@ void TALER_wallet_recoup_sign ( const struct TALER_DenominationHash *h_denom_pub, const union TALER_DenominationBlindingKeyP *coin_bks, - const struct TALER_Amount *requested_amount, const struct TALER_CoinSpendPrivateKeyP *coin_priv, struct TALER_CoinSpendSignatureP *coin_sig) { @@ -192,8 +188,6 @@ TALER_wallet_recoup_sign ( .coin_blind = *coin_bks }; - TALER_amount_hton (&pr.recoup_amount, - requested_amount); GNUNET_CRYPTO_eddsa_sign (&coin_priv->eddsa_priv, &pr, &coin_sig->eddsa_signature); @@ -204,7 +198,6 @@ enum GNUNET_GenericReturnValue TALER_wallet_recoup_refresh_verify ( const struct TALER_DenominationHash *h_denom_pub, const union TALER_DenominationBlindingKeyP *coin_bks, - const struct TALER_Amount *requested_amount, const struct TALER_CoinSpendPublicKeyP *coin_pub, const struct TALER_CoinSpendSignatureP *coin_sig) { @@ -215,8 +208,6 @@ TALER_wallet_recoup_refresh_verify ( .coin_blind = *coin_bks }; - TALER_amount_hton (&pr.recoup_amount, - requested_amount); return GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_RECOUP_REFRESH, &pr, &coin_sig->eddsa_signature, @@ -228,7 +219,6 @@ void TALER_wallet_recoup_refresh_sign ( const struct TALER_DenominationHash *h_denom_pub, const union TALER_DenominationBlindingKeyP *coin_bks, - const struct TALER_Amount *requested_amount, const struct TALER_CoinSpendPrivateKeyP *coin_priv, struct TALER_CoinSpendSignatureP *coin_sig) { @@ -239,8 +229,6 @@ TALER_wallet_recoup_refresh_sign ( .coin_blind = *coin_bks }; - TALER_amount_hton (&pr.recoup_amount, - requested_amount); GNUNET_CRYPTO_eddsa_sign (&coin_priv->eddsa_priv, &pr, &coin_sig->eddsa_signature); |