diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-01-16 17:45:05 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-01-16 17:45:05 +0100 |
commit | faf3f57ce3582a5b9f1070d689827bccd0183cd4 (patch) | |
tree | 6510265d7e69b1309cac68ba53d57f6d386eaf9e /src/exchange/taler-exchange-httpd_withdraw.c | |
parent | 8563dcc8452d243ec63f98f0b63b48aa82c050a3 (diff) |
do not 500 on empty reserve history by not ignoring undecided purses that may have caused reserve to be created in the first place
Diffstat (limited to 'src/exchange/taler-exchange-httpd_withdraw.c')
-rw-r--r-- | src/exchange/taler-exchange-httpd_withdraw.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/exchange/taler-exchange-httpd_withdraw.c b/src/exchange/taler-exchange-httpd_withdraw.c index 25377363..05153bfc 100644 --- a/src/exchange/taler-exchange-httpd_withdraw.c +++ b/src/exchange/taler-exchange-httpd_withdraw.c @@ -215,6 +215,8 @@ withdraw_transaction (void *cls, if (! balance_ok) { TEH_plugin->rollback (TEH_plugin->cls); + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Balance insufficient for /withdraw\n"); *mhd_ret = TEH_RESPONSE_reply_reserve_insufficient_balance ( connection, TALER_EC_EXCHANGE_WITHDRAW_INSUFFICIENT_FUNDS, |