exchange

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

commit 60549a69c794106e1d1ceae249488542c53b68c3
parent 96ccde10c8be28b1a186c9506557f36c57beab7c
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Mon,  3 Jun 2019 18:21:04 +0200

Fix return code check.

Diffstat:
Msrc/lib/exchange_api_handle.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/exchange_api_handle.c b/src/lib/exchange_api_handle.c @@ -1681,8 +1681,8 @@ TALER_EXCHANGE_serialize_data GNUNET_break (0); continue; } - if (0 == json_array_append_new (denoms, - denom)) + if (0 != json_array_append_new (denoms, + denom)) { GNUNET_break (0); json_decref (denom);