diff options
author | Jonathan Buchanan <jonathan.russ.buchanan@gmail.com> | 2020-07-23 20:00:13 -0400 |
---|---|---|
committer | Jonathan Buchanan <jonathan.russ.buchanan@gmail.com> | 2020-07-23 20:00:13 -0400 |
commit | 94f8e779a3a8706d5ade4f1871607132acb9e026 (patch) | |
tree | 05845de6881a6880e5ee2f45cb0d0d9516a41fbd /src/merchant-tools | |
parent | 280b0a6c5aa4917d85b0e480f9e08ce59b4588d9 (diff) |
test pay with NULL session_id
Diffstat (limited to 'src/merchant-tools')
-rw-r--r-- | src/merchant-tools/taler-merchant-benchmark.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/merchant-tools/taler-merchant-benchmark.c b/src/merchant-tools/taler-merchant-benchmark.c index b86f78a2..09e82322 100644 --- a/src/merchant-tools/taler-merchant-benchmark.c +++ b/src/merchant-tools/taler-merchant-benchmark.c @@ -219,7 +219,8 @@ run (void *cls, "create-proposal-1", "withdraw-coin-1", CURRENCY_5, - CURRENCY_4_99), + CURRENCY_4_99, + NULL), TALER_TESTING_cmd_rewind_ip ("rewind-payments", "create-reserve", payments_number), @@ -239,7 +240,8 @@ run (void *cls, "create-proposal-2", "withdraw-coin-2", CURRENCY_5, - CURRENCY_4_99), + CURRENCY_4_99, + NULL), /* /track/transaction over deposit-simple-2 */ TALER_TESTING_cmd_exec_aggregator ("aggregate-1", @@ -296,7 +298,8 @@ run (void *cls, "create-unaggregated-proposal", "withdraw-coin-1", CURRENCY_5, - CURRENCY_4_99), + CURRENCY_4_99, + NULL), TALER_TESTING_cmd_rewind_ip ("rewind-unaggregated", "create-reserve-1", unaggregated_number), @@ -327,7 +330,8 @@ run (void *cls, "create-twocoins-proposal", "withdraw-coin-2;withdraw-coin-3", CURRENCY_10, - CURRENCY_9_98), + CURRENCY_9_98, + NULL), TALER_TESTING_cmd_exec_aggregator ("aggregate-twocoins", cfg_filename), TALER_TESTING_cmd_rewind_ip ("rewind-twocoins", |