exchange

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

commit 5156de119587aa6859ebc4950594a7aea745d13b
parent 27b0f3769c408bd601f70cf640227558c640c3f4
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Sat,  3 Mar 2018 01:08:30 +0100

fix return code.

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

diff --git a/src/bank-lib/test_bank_api_twisted.c b/src/bank-lib/test_bank_api_twisted.c @@ -141,9 +141,9 @@ main (int argc, GNUNET_free (bank_url); if (GNUNET_OK == ret) - return 1; + return 0; - return 0; + return 1; } /* end of test_bank_api_twisted.c */