summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_reserve_withdraw.c
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-03-14 17:46:07 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-03-14 17:46:07 +0100
commit5df58a77c51ee84452381473f5b3b2bdf228da29 (patch)
tree2f331cf8c199a2996f9b9fb46da77ca96fa07475 /src/exchange/taler-exchange-httpd_reserve_withdraw.c
parentbdd8d67be3cb215e93ee6ceb12cf1279de277e70 (diff)
downloadexchange-5df58a77c51ee84452381473f5b3b2bdf228da29.tar.gz
exchange-5df58a77c51ee84452381473f5b3b2bdf228da29.tar.bz2
exchange-5df58a77c51ee84452381473f5b3b2bdf228da29.zip
Benchmark debug
Diffstat (limited to 'src/exchange/taler-exchange-httpd_reserve_withdraw.c')
-rw-r--r--src/exchange/taler-exchange-httpd_reserve_withdraw.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/exchange/taler-exchange-httpd_reserve_withdraw.c b/src/exchange/taler-exchange-httpd_reserve_withdraw.c
index d42168abc..1a05326dd 100644
--- a/src/exchange/taler-exchange-httpd_reserve_withdraw.c
+++ b/src/exchange/taler-exchange-httpd_reserve_withdraw.c
@@ -223,6 +223,24 @@ withdraw_transaction (void *cls,
/* Check if balance is sufficient */
r.pub = wc->wsrd.reserve_pub;
+
+ /**
+ * Debug block.
+ */
+ {
+#define PUBSIZE 80
+ char pub_s[PUBSIZE];
+
+ GNUNET_break
+ (NULL != GNUNET_STRINGS_data_to_string (&r.pub,
+ sizeof (r.pub),
+ &pub_s[0],
+ PUBSIZE));
+ GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ "Trying to withdraw from reserve: %s\n",
+ pub_s);
+ }
+
qs = TEH_plugin->reserve_get (TEH_plugin->cls,
session,
&r);