commit 1448f97b5119f0cd163ce745c04601d0be45458b
parent 357dbc02352d1efa078f50f9405f3ee7890dc735
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 11 Feb 2020 23:02:22 +0100
keep the const though, that was an improvement
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c
@@ -972,7 +972,7 @@ handle_debit_history (struct TALER_FAKEBANK_Handle *h,
const char *account)
{
struct HistoryArgs ha;
- struct Transaction *pos;
+ const struct Transaction *pos;
json_t *history;
if (GNUNET_OK !=
@@ -1087,7 +1087,7 @@ handle_credit_history (struct TALER_FAKEBANK_Handle *h,
const char *account)
{
struct HistoryArgs ha;
- struct Transaction *pos;
+ const struct Transaction *pos;
json_t *history;
if (GNUNET_OK !=