exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 5cfb3d3b9695802d18d9a0b08a03c601c930aeed
parent a199215b985192aeda2a25e507e1349ff41d4eb5
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 25 Aug 2019 15:40:01 +0200

fix ftbfs

Diffstat:
Msrc/auditor/taler-wire-auditor.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/auditor/taler-wire-auditor.c b/src/auditor/taler-wire-auditor.c @@ -1095,7 +1095,7 @@ process_debits (void *cls) /* skip accounts where DEBIT is not enabled */ while ( (NULL != wa) && - (GNUNET_NO == wa->debit_enabled) ) + (GNUNET_NO == wa->watch_debit) ) wa = wa->next; if (NULL == wa) { @@ -1491,7 +1491,7 @@ process_credits (void *cls) /* skip accounts where CREDIT is not enabled */ while ( (NULL != wa) && - (GNUNET_NO == wa->credit_enabled) ) + (GNUNET_NO == wa->watch_credit) ) wa = wa->next; if (NULL == wa) {