commit 15f8fe46a920ec05054d27ed02428613c6b5f626
parent e22fe3f40520994287c2f49efac02957e6473277
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Wed, 15 Jul 2026 23:24:28 +0200
fix copy-paste error
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/bank-lib/fakebank_twg_get_transfers.c b/src/bank-lib/fakebank_twg_get_transfers.c
@@ -173,9 +173,9 @@ TALER_FAKEBANK_twg_get_transfers_ (
(unsigned long long) pos->row_id,
account);
if (0 > limit)
- pos = pos->prev_in;
+ pos = pos->prev_out;
if (0 < limit)
- pos = pos->next_in;
+ pos = pos->next_out;
continue;
}
GNUNET_asprintf (&credit_payto,
diff --git a/src/bank-lib/fakebank_twg_history.c b/src/bank-lib/fakebank_twg_history.c
@@ -220,9 +220,9 @@ TALER_FAKEBANK_twg_get_debit_history_ (
(unsigned long long) pos->row_id,
account);
if (0 > hc->ha.delta)
- pos = pos->prev_in;
+ pos = pos->prev_out;
if (0 < hc->ha.delta)
- pos = pos->next_in;
+ pos = pos->next_out;
continue;
}
GNUNET_asprintf (&credit_payto,