summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_common_deposit.c
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2022-07-01 07:22:39 +0200
committerChristian Grothoff <grothoff@gnunet.org>2022-07-01 07:22:39 +0200
commit9e3fb2302d72a285067ccc39038481afcab97dc2 (patch)
tree709d884502b5c8499772b93b2c8eeade160885f3 /src/exchange/taler-exchange-httpd_common_deposit.c
parent085e40bc562343221bceb6fc4dc9aba8e32a27e3 (diff)
parent21551bb4c3c887fdcfb3d814c8ab4d1a4ec82945 (diff)
downloadexchange-9e3fb2302d72a285067ccc39038481afcab97dc2.tar.gz
exchange-9e3fb2302d72a285067ccc39038481afcab97dc2.tar.bz2
exchange-9e3fb2302d72a285067ccc39038481afcab97dc2.zip
-gana merge
Diffstat (limited to 'src/exchange/taler-exchange-httpd_common_deposit.c')
-rw-r--r--src/exchange/taler-exchange-httpd_common_deposit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd_common_deposit.c b/src/exchange/taler-exchange-httpd_common_deposit.c
index 694dfa411..92e2469f2 100644
--- a/src/exchange/taler-exchange-httpd_common_deposit.c
+++ b/src/exchange/taler-exchange-httpd_common_deposit.c
@@ -224,13 +224,13 @@ TEH_common_deposit_check_purse_deposit (
GNUNET_break_op (0);
return TALER_MHD_reply_with_error (connection,
MHD_HTTP_BAD_REQUEST,
- /* FIXME: other error code? */
- TALER_EC_EXCHANGE_GENERIC_COIN_CONFLICTING_AGE_HASH,
+ TALER_EC_EXCHANGE_PURSE_DEPOSIT_COIN_CONFLICTING_ATTEST_VS_AGE_COMMITMENT,
"mismatch of attest and age_commitment");
}
if (coin->cpi.no_age_commitment)
return GNUNET_OK; /* unrestricted coin */
+
/* age attestation must be valid */
if (GNUNET_OK !=
TALER_age_commitment_verify (&coin->age_commitment,
@@ -241,7 +241,7 @@ TEH_common_deposit_check_purse_deposit (
return TALER_MHD_reply_with_error (connection,
MHD_HTTP_BAD_REQUEST,
/* FIXME: other error code? */
- TALER_EC_EXCHANGE_GENERIC_COIN_CONFLICTING_AGE_HASH,
+ TALER_EC_EXCHANGE_PURSE_DEPOSIT_COIN_AGE_ATTESTATION_FAILURE,
"invalid attest for minimum age");
}
return GNUNET_OK;
@@ -259,7 +259,7 @@ TEH_common_purse_deposit_free_coin (struct TEH_PurseDepositedCoin *coin)
{
TALER_denom_sig_free (&coin->cpi.denom_sig);
if (! coin->cpi.no_age_commitment)
- TALER_age_commitment_free (&coin->age_commitment);
+ GNUNET_free (coin->age_commitment.keys); /* Only the keys have been allocated */
}