exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit fefaf94aa978d67e8fcbe2f49742858f130c0275
parent 7015c4e14885fb02c126472a82893f1dc6657d62
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 10 Sep 2024 15:17:04 +0200

-fix typos

Diffstat:
Msrc/lib/exchange_api_restrictions.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/exchange_api_restrictions.c b/src/lib/exchange_api_restrictions.c @@ -114,12 +114,12 @@ TALER_EXCHANGE_keys_evaluate_hard_limits ( if (al->soft_limit) continue; if (! TALER_amount_cmp_currency (limit, - &al->limit)) + &al->threshold)) continue; GNUNET_break (GNUNET_OK == TALER_amount_min (limit, limit, - &al->limit)); + &al->threshold)); } } @@ -129,7 +129,7 @@ TALER_EXCHANGE_keys_evaluate_zero_limits ( const struct TALER_EXCHANGE_Keys *keys, enum TALER_KYCLOGIC_KycTriggerEvent event) { - for (unsigned int i = 0; i<keys->soft_limits_length; i++) + for (unsigned int i = 0; i<keys->zero_limits_length; i++) { const struct TALER_EXCHANGE_ZeroLimitedOperation *zlo = &keys->zero_limits[i];