summaryrefslogtreecommitdiff
path: root/src/mintdb/plugin_mintdb_postgres.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mintdb/plugin_mintdb_postgres.c')
-rw-r--r--src/mintdb/plugin_mintdb_postgres.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c
index 0c7d2d36a..3e52d1388 100644
--- a/src/mintdb/plugin_mintdb_postgres.c
+++ b/src/mintdb/plugin_mintdb_postgres.c
@@ -2179,6 +2179,9 @@ postgres_insert_refresh_melt (void *cls,
}
if (GNUNET_NO == ret) /* if not, insert it */
{
+ fprintf (stderr,
+ "Melting coin coin %s\n",
+ TALER_B2S (&melt->coin.coin_pub));
ret = insert_known_coin (cls,
session,
&melt->coin);
@@ -3015,8 +3018,13 @@ postgres_get_transfer (void *cls,
return GNUNET_SYSERR;
}
nrows = PQntuples (result);
+ fprintf (stderr,
+ "linkage for coin %s resulted in %d results\n",
+ TALER_B2S (coin_pub),
+ nrows);
if (0 == nrows)
{
+ /* no matches found */
PQclear (result);
return GNUNET_NO;
}