sw

simple wallet
git clone git://git.bitsmanent.org/sw
Log | Files | Refs | README | LICENSE

commit a67acaa170fa39cbcb898a223b82f787be80d2d6
parent 534b442622cc7b30f1f1a59f07e7bccc49a206a0
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Sat, 29 Jun 2024 15:45:24 +0200

Fix refresh() which now skip filtered from partials.

Diffstat:
Msw.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/sw.c b/sw.c @@ -199,6 +199,9 @@ refresh(void) { totals.expense += m->amount; ++totals.count; + if(m->filtered) + continue; + if(totals.pcount >= limit) continue; totals.pamount += m->amount;