diff options
author | Florian Dold <florian@dold.me> | 2022-09-05 13:48:34 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-09-05 13:48:34 +0200 |
commit | 57a53a016ba50fdada1f6441ce8fc222abfb607f (patch) | |
tree | 5cde28f56ffa1b41516f441f3a349bb34bc2a237 /src | |
parent | 0c0c5986129a472ba18a958ba59be227affde9ef (diff) |
p2p payments: do not require attestation when min_age is 0
Diffstat (limited to 'src')
-rw-r--r-- | src/exchange/taler-exchange-httpd_common_deposit.c | 3 |
1 files 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 index 3420f9cac..ecb13630c 100644 --- 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) { |