summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_withdraw.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-03-29 04:16:00 +0200
committerChristian Grothoff <christian@grothoff.org>2020-03-29 04:16:00 +0200
commit2b27d4ca8be9d8228f4dbf52c4d59be9a91b6bbe (patch)
tree7745d848fa705eae9ac8480890f51547a1e67adb /src/exchange/taler-exchange-httpd_withdraw.c
parent0582a6b567eb09c559564f5cae1908584116cc38 (diff)
downloadexchange-2b27d4ca8be9d8228f4dbf52c4d59be9a91b6bbe.tar.gz
exchange-2b27d4ca8be9d8228f4dbf52c4d59be9a91b6bbe.tar.bz2
exchange-2b27d4ca8be9d8228f4dbf52c4d59be9a91b6bbe.zip
remove bogus warnings
Diffstat (limited to 'src/exchange/taler-exchange-httpd_withdraw.c')
-rw-r--r--src/exchange/taler-exchange-httpd_withdraw.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd_withdraw.c b/src/exchange/taler-exchange-httpd_withdraw.c
index 5665f24fb..bbd926a5c 100644
--- a/src/exchange/taler-exchange-httpd_withdraw.c
+++ b/src/exchange/taler-exchange-httpd_withdraw.c
@@ -250,7 +250,6 @@ withdraw_transaction (void *cls,
/* The reserve does not have the required amount (actual
* amount + withdraw fee) */
- GNUNET_break_op (0);
#if GNUNET_EXTRA_LOGGING
{
char *amount_required;
@@ -258,9 +257,9 @@ withdraw_transaction (void *cls,
amount_required = TALER_amount_to_string (&wc->amount_required);
r_balance = TALER_amount_to_string (&r.balance);
- TALER_LOG_WARNING ("Asked %s over a reserve worth %s\n",
- amount_required,
- r_balance);
+ TALER_LOG_DEBUG ("Asked %s over a reserve worth %s\n",
+ amount_required,
+ r_balance);
GNUNET_free (amount_required);
GNUNET_free (r_balance);
}