diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-03-21 15:48:12 +0100 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-03-21 17:13:27 +0100 |
commit | 9cc813adec097191c4c2c0da08337ffd0dcf6f6e (patch) | |
tree | 3e0b4ef59feea99c884921d9ce9dabe3b910192c | |
parent | 8fe985c7673d3ad014e8d2dcf304a60a702ee8b3 (diff) |
build exchange url at (withdraw) command creation.
-rw-r--r-- | src/exchange-lib/testing_api_cmd_withdraw.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/exchange-lib/testing_api_cmd_withdraw.c b/src/exchange-lib/testing_api_cmd_withdraw.c index 5f3808a78..8ab5e1d2d 100644 --- a/src/exchange-lib/testing_api_cmd_withdraw.c +++ b/src/exchange-lib/testing_api_cmd_withdraw.c @@ -354,6 +354,8 @@ TALER_TESTING_cmd_withdraw_amount } ws->expected_response_code = expected_response_code; ws->exchange = exchange; + ws->exchange_url = MAH_path_to_url (exchange, "/"); + cmd.cls = ws; cmd.label = label; cmd.run = &withdraw_run; @@ -390,7 +392,7 @@ TALER_TESTING_cmd_withdraw_denomination ws->pk = dk; ws->expected_response_code = expected_response_code; ws->exchange = exchange; - ws->exchange_url = MAH_path_to_url (ws->exchange, "/"); + ws->exchange_url = MAH_path_to_url (exchange, "/"); cmd.cls = ws; cmd.label = label; |