diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-08-17 23:38:00 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-08-17 23:38:00 +0200 |
commit | 51e0612f8ba656248c4902edd601965fb36cbc49 (patch) | |
tree | c86c9a424da18a673ff6b837fa811821d6f376ce /src/mintdb | |
parent | 1a0eb0307a664c0dcc7bdb8bc08cf7aaba4e7f3e (diff) |
some DB logic fixes, so now more of tests pass
Diffstat (limited to 'src/mintdb')
-rw-r--r-- | src/mintdb/plugin_mintdb_postgres.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c index 35213d961..6e26c82e9 100644 --- a/src/mintdb/plugin_mintdb_postgres.c +++ b/src/mintdb/plugin_mintdb_postgres.c @@ -2181,9 +2181,6 @@ 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); @@ -3026,10 +3023,6 @@ 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 */ @@ -3192,7 +3185,7 @@ postgres_get_coin_transactions (void *cls, &melt->coin_sig), TALER_PQ_result_spec_amount ("amount_with_fee", &melt->amount_with_fee), - TALER_PQ_result_spec_amount ("amount_with_fee", + TALER_PQ_result_spec_amount ("melt_fee", &melt->melt_fee), TALER_PQ_result_spec_end }; @@ -3204,6 +3197,7 @@ postgres_get_coin_transactions (void *cls, PQclear (result); goto cleanup; } + melt->coin.coin_pub = *coin_pub; } tl = GNUNET_new (struct TALER_MINTDB_TransactionList); tl->next = head; |