exchange

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

commit b4c164ad8eb27a25c9b2eacf1c3bb94e5c188df2
parent b305ad0a07b497438299ccbeda2cba52c070d02d
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 17 Nov 2023 20:18:01 +0100

-fix loop

Diffstat:
Msrc/lib/exchange_api_stefan.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/exchange_api_stefan.c b/src/lib/exchange_api_stefan.c @@ -307,7 +307,7 @@ TALER_EXCHANGE_keys_stefan_round ( if (NULL == min) return; frac = min->fraction; - while (0 == frac % 10) + while (0 != frac % 10) { mod *= 10; frac /= 10;