aboutsummaryrefslogtreecommitdiff
path: root/src/exchange-lib/testing_api_cmd_withdraw.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-08-11 02:48:15 +0200
committerChristian Grothoff <christian@grothoff.org>2018-08-11 02:48:15 +0200
commit9162b28b0af22d255c0017a2f539e22dea407881 (patch)
treeb83ae1a2c6bd6a4cdecef71ef39b681dba594816 /src/exchange-lib/testing_api_cmd_withdraw.c
parentab239f3e548028b13952c31f1063557a7d6c0322 (diff)
downloadexchange-9162b28b0af22d255c0017a2f539e22dea407881.tar.xz
fix command lookup
Diffstat (limited to 'src/exchange-lib/testing_api_cmd_withdraw.c')
-rw-r--r--src/exchange-lib/testing_api_cmd_withdraw.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/exchange-lib/testing_api_cmd_withdraw.c b/src/exchange-lib/testing_api_cmd_withdraw.c
index 50cc45ed5..90a15b80f 100644
--- a/src/exchange-lib/testing_api_cmd_withdraw.c
+++ b/src/exchange-lib/testing_api_cmd_withdraw.c
@@ -97,19 +97,19 @@ struct WithdrawState
* How long do we wait until we retry?
*/
struct GNUNET_TIME_Relative backoff;
-
+
/**
* Expected HTTP response code to the request.
*/
unsigned int expected_response_code;
/**
- * Was this command modified via
- * #TALER_TESTING_cmd_withdraw_with_retry to
+ * Was this command modified via
+ * #TALER_TESTING_cmd_withdraw_with_retry to
* enable retries?
*/
int do_retry;
-
+
};
@@ -502,12 +502,12 @@ struct TALER_TESTING_Command
TALER_TESTING_cmd_withdraw_with_retry (struct TALER_TESTING_Command cmd)
{
struct WithdrawState *ws;
-
+
GNUNET_assert (&withdraw_run == cmd.run);
ws = cmd.cls;
ws->do_retry = GNUNET_YES;
return cmd;
}
-
+
/* end of testing_api_cmd_withdraw.c */