summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-aggregator.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-17 23:40:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-17 23:40:44 +0100
commitd95f2a9e437b946bba66c2a0054524fc2e320621 (patch)
treed09f50a8aa04b57877139a3934d669c4a316d533 /src/exchange/taler-exchange-aggregator.c
parentf0d8311b1ccbe9e816127ca9a4de65a6f605c4b9 (diff)
downloadexchange-d95f2a9e437b946bba66c2a0054524fc2e320621.tar.gz
exchange-d95f2a9e437b946bba66c2a0054524fc2e320621.tar.bz2
exchange-d95f2a9e437b946bba66c2a0054524fc2e320621.zip
DCE, part one
Diffstat (limited to 'src/exchange/taler-exchange-aggregator.c')
-rw-r--r--src/exchange/taler-exchange-aggregator.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/exchange/taler-exchange-aggregator.c b/src/exchange/taler-exchange-aggregator.c
index e9973c518..d0bb715cd 100644
--- a/src/exchange/taler-exchange-aggregator.c
+++ b/src/exchange/taler-exchange-aggregator.c
@@ -45,11 +45,6 @@ struct WireAccount
struct WireAccount *prev;
/**
- * Account information.
- */
- struct TALER_Account account;
-
- /**
* Authentication data.
*/
struct TALER_BANK_AuthenticationData auth;
@@ -471,19 +466,6 @@ add_account_cb (void *cls,
GNUNET_free (wa);
return;
}
- if (GNUNET_OK !=
- TALER_BANK_account_parse_cfg (cfg,
- ai->section_name,
- &wa->account))
- {
- GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE,
- "Failed to load account `%s'\n",
- ai->section_name);
- TALER_BANK_auth_free (&wa->auth);
- GNUNET_free (wa->method);
- GNUNET_free (wa);
- return;
- }
wa->section_name = GNUNET_strdup (ai->section_name);
GNUNET_CONTAINER_DLL_insert (wa_head,
wa_tail,
@@ -572,7 +554,6 @@ shutdown_task (void *cls)
GNUNET_CONTAINER_DLL_remove (wa_head,
wa_tail,
wa);
- TALER_BANK_account_free (&wa->account);
TALER_BANK_auth_free (&wa->auth);
TALER_EXCHANGEDB_fees_free (wa->af);
GNUNET_free (wa->section_name);