cash2ecash

cash2ecash: cash acceptor that issues digital cash (experimental)
Log | Files | Refs | README | LICENSE

commit dfbd78642a7d5392d3c881ab7406fb8ffdb1c9a5
parent 46069084f068a73be72b9c68d9b7ad33b03675e8
Author: Tellenbach Reto <tellr1@bfh.ch>
Date:   Mon,  8 Jun 2026 18:18:25 +0200

[---] State-logic: CountMoney state

Diffstat:
Msrc/taler-digitizer.c | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/taler-digitizer.c b/src/taler-digitizer.c @@ -542,9 +542,13 @@ on_get_withdrawal_status_done(void *cls, // give context for non terminal errors! GNUNET_SCHEDULER_add_now(state_controller_task,NULL); } - struct GNUNET_TIME_Relative poll; - poll = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS,200); - GNUNET_SCHEDULER_add_delayed(poll,get_withdrawal_task,timeout_handle); + else + { + struct GNUNET_TIME_Relative poll; + poll = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS,200); + GNUNET_SCHEDULER_add_delayed(poll,get_withdrawal_task,timeout_handle); + } + return; }