exchange

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

commit ddd4a6afcc214298b7b4e35ed92de25248787f5c
parent 9556fb326e31d6653624ae94873a92bbde9da5a0
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 17 Nov 2016 15:02:22 +0100

serial IDs start at 1, fixed in right place this time

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

diff --git a/src/auditor/taler-auditor.c b/src/auditor/taler-auditor.c @@ -234,8 +234,6 @@ verify_reserve_balance (void *cls, return GNUNET_OK; } /* TODO: check reserve.expiry? */ - reserve_in_serial_id = 1; - reserve_out_serial_id = 1; /* FIXME: get previous reserve state from auditor DB */ /* FIXME: simplified computation as we have no previous reserve state yet */ @@ -275,6 +273,7 @@ analyze_reserves () { reserves = GNUNET_CONTAINER_multihashmap_create (512, GNUNET_NO); + /* FIXME: check return values... */ edb->select_reserves_in_above_serial_id (edb->cls, esession, @@ -339,8 +338,8 @@ run (void *cls, } /* FIXME: init these from auditordb */ - reserve_in_serial_id = 0; - reserve_out_serial_id = 0; + reserve_in_serial_id = 1; + reserve_out_serial_id = 1; analyze_reserves ();