diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-10-31 09:57:39 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-10-31 09:57:39 +0100 |
commit | f1d2ed93a76d5542387494711c7e6741bd3dd821 (patch) | |
tree | c0deaeee8e3703275e899ef9b761f064d9c98fa8 /src | |
parent | 68a8cf311cc80edb2d1e0ebd88f0e55f800691bd (diff) |
remove -s option again: not needed thanks to idempotency
Diffstat (limited to 'src')
-rw-r--r-- | src/merchant-tools/taler-merchant-benchmark.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/merchant-tools/taler-merchant-benchmark.c b/src/merchant-tools/taler-merchant-benchmark.c index 684ffddd..b6992678 100644 --- a/src/merchant-tools/taler-merchant-benchmark.c +++ b/src/merchant-tools/taler-merchant-benchmark.c @@ -113,11 +113,6 @@ static unsigned int payments_number = 1; static unsigned int tracks_number = 1; /** - * Skip instance creation? - */ -static int skip_instance = 0; - -/** * Config filename to give to commands (like wirewatch). */ static char *cfg_filename; @@ -288,7 +283,7 @@ run (void *cls, }; TALER_TESTING_run (is, - &ordinary_commands[skip_instance]); + ordinary_commands); return; } @@ -375,7 +370,7 @@ run (void *cls, }; TALER_TESTING_run (is, - &corner_commands[skip_instance]); + corner_commands); return; } } @@ -440,10 +435,6 @@ main (int argc, "UN", "will generate UN unaggregated payments, defaults to 1", &unaggregated_number), - GNUNET_GETOPT_option_flag ('s', - "skip-instance", - "skip creating the backend default instance (use if the instance already exists with the backend)", - &skip_instance), GNUNET_GETOPT_option_uint ('t', "two-coins", "TC", |