summaryrefslogtreecommitdiff
path: root/src/wire-plugins
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-02-12 17:13:08 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-02-12 17:13:08 +0100
commit82f01f111b2626362746112ba8c95e8a71e95924 (patch)
tree7cf6ca0077d944bc29951b706bcc12f28722c35f /src/wire-plugins
parent8aa66c6023fde8f0a8ea9a50e8c9283814521825 (diff)
downloadexchange-82f01f111b2626362746112ba8c95e8a71e95924.tar.gz
exchange-82f01f111b2626362746112ba8c95e8a71e95924.tar.bz2
exchange-82f01f111b2626362746112ba8c95e8a71e95924.zip
Getting transaction history 60% fixed.
Diffstat (limited to 'src/wire-plugins')
-rw-r--r--src/wire-plugins/plugin_wire_taler-bank.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wire-plugins/plugin_wire_taler-bank.c b/src/wire-plugins/plugin_wire_taler-bank.c
index 289c9b6a0..1947a5ae5 100644
--- a/src/wire-plugins/plugin_wire_taler-bank.c
+++ b/src/wire-plugins/plugin_wire_taler-bank.c
@@ -1073,7 +1073,12 @@ taler_bank_get_history (void *cls,
parse_account_cfg (tc->cfg,
account_section,
&account))
+ {
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "Could not parse the config section '%s'\n",
+ account_section);
return NULL;
+ }
whh = GNUNET_new (struct TALER_WIRE_HistoryHandle);
if (GNUNET_OK !=
@@ -1081,6 +1086,9 @@ taler_bank_get_history (void *cls,
account_section,
&whh->auth))
{
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "Could not parse the auth values from '%s'\n",
+ account_section);
GNUNET_free (whh);
return NULL;
}
@@ -1088,6 +1096,8 @@ taler_bank_get_history (void *cls,
whh->hres_cb = hres_cb;
whh->hres_cb_cls = hres_cb_cls;
+ GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ "Requesting the transaction history.\n");
whh->hh = TALER_BANK_history (tc->ctx,
account.bank_base_url,
&whh->auth,
@@ -1110,6 +1120,7 @@ taler_bank_get_history (void *cls,
}
GNUNET_free (account.hostname);
GNUNET_free (account.bank_base_url);
+ GNUNET_assert (NULL != whh);
return whh;
}