commit 701d9c8d554352be39013de4894c4183619b2c44
parent 6cd6d9b77ef33f86627f5cb1251ce320e9346f35
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Sat, 15 Aug 2026 21:29:32 +0200
fix overlapping wire_fee detection
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/auditor/taler-helper-auditor-aggregation.c b/src/auditor/taler-helper-auditor-aggregation.c
@@ -1167,12 +1167,12 @@ get_wire_fee (struct AggregationContext *ac,
}
if ((NULL != wfi->next) &&
GNUNET_TIME_timestamp_cmp (wfi->next->start_date,
- >=,
+ <,
wfi->end_date))
{
struct TALER_AUDITORDB_FeeTimeInconsistency ftia = {
.problem_row_id = rowid,
- .diagnostic = (char *) "end date date after next start date",
+ .diagnostic = (char *) "end date after next start date",
.time = wfi->end_date.abs_time,
.type = (char *) method
};