summaryrefslogtreecommitdiff
path: root/src/lib/testing_api_cmd_insert_deposit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/testing_api_cmd_insert_deposit.c')
-rw-r--r--src/lib/testing_api_cmd_insert_deposit.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/testing_api_cmd_insert_deposit.c b/src/lib/testing_api_cmd_insert_deposit.c
index f83e98232..0e7ea661d 100644
--- a/src/lib/testing_api_cmd_insert_deposit.c
+++ b/src/lib/testing_api_cmd_insert_deposit.c
@@ -81,7 +81,7 @@ insert_deposit_run (void *cls,
const struct TALER_TESTING_Command *cmd,
struct TALER_TESTING_Interpreter *is)
{
- struct InsertDepositState *ks = cls;
+ struct InsertDepositState *ids = cls;
// TODO
}
@@ -118,7 +118,7 @@ insert_deposit_traits (void *cls,
const char *trait,
unsigned int index)
{
- struct AuditorDbinitState *ks = cls;
+ struct InsertDepositState *ids = cls;
struct TALER_TESTING_Trait traits[] = {
// FIXME: needed?
TALER_TESTING_trait_end ()
@@ -154,17 +154,17 @@ TALER_TESTING_cmd_insert_deposit (const char *label,
const char *deposit_fee)
{
struct TALER_TESTING_Command cmd;
- struct InsertDepositState *ds;
+ struct InsertDepositState *ids;
- ds = GNUNET_new (struct InsertDepositState);
- ds->config_filename = config_filename;
- ds->merchant_name = merchant_name;
- ds->merchant_account = merchant_account;
- ds->wire_deadline = wire_deadline;
- ds->amount_with_fee = amount_with_fee;
- ds->deposit_fee = deposit_fee;
+ ids = GNUNET_new (struct InsertDepositState);
+ ids->config_filename = config_filename;
+ ids->merchant_name = merchant_name;
+ ids->merchant_account = merchant_account;
+ ids->wire_deadline = wire_deadline;
+ ids->amount_with_fee = amount_with_fee;
+ ids->deposit_fee = deposit_fee;
- cmd.cls = ds;
+ cmd.cls = ids;
cmd.label = label;
cmd.run = &insert_deposit_run;
cmd.cleanup = &insert_deposit_cleanup;