commit 57a53a016ba50fdada1f6441ce8fc222abfb607f
parent 0c0c5986129a472ba18a958ba59be227affde9ef
Author: Florian Dold <florian@dold.me>
Date: Mon, 5 Sep 2022 13:48:34 +0200
p2p payments: do not require attestation when min_age is 0
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/exchange/taler-exchange-httpd_common_deposit.c b/src/exchange/taler-exchange-httpd_common_deposit.c
@@ -220,6 +220,9 @@ TEH_common_deposit_check_purse_deposit (
: GNUNET_SYSERR;
}
+ if (0 == min_age)
+ return GNUNET_OK; /* no need to apply age checks */
+
/* Check and verify the age restriction. */
if (coin->no_attest != coin->cpi.no_age_commitment)
{