exchange

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

commit e4fe0dc87eb484f045919a441cacfee3d5c94c31
parent fbc685a76c81a540ef76f8bc7ddcfd77807e4faf
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 17 Oct 2017 14:03:31 +0200

exit more nicely if command line arguments were wrong

Diffstat:
Msrc/benchmark/taler-exchange-benchmark.c | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c @@ -1599,7 +1599,12 @@ main (int argc, GNUNET_assert (COIN_VALUE <= (1LL << REFRESH_SLOTS_NEEDED)); ret = GNUNET_GETOPT_run ("taler-exchange-benchmark", options, argc, argv); - GNUNET_assert (GNUNET_SYSERR != ret); + if (GNUNET_SYSERR == ret) + { + fprintf (stderr, + "Invalid command line arguments\n"); + return 1; + } if (GNUNET_NO == ret) return 0; if ( (0 != num_iterations) &&