From e75afb316484e7a55f913f6584d2a528918223f4 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Fri, 8 Dec 2017 17:04:11 +0100 Subject: use row_id instead of serial_id everywhere --- src/bank-lib/bank_api_history.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/bank-lib/bank_api_history.c') diff --git a/src/bank-lib/bank_api_history.c b/src/bank-lib/bank_api_history.c index a6c7dceac..3b8a83e13 100644 --- a/src/bank-lib/bank_api_history.c +++ b/src/bank-lib/bank_api_history.c @@ -89,7 +89,7 @@ parse_account_history (struct TALER_BANK_HistoryHandle *hh, struct TALER_BANK_TransferDetails td; const char *sign; uint64_t other_account; - uint64_t serial_id; + uint64_t row_id; enum TALER_BANK_Direction direction; struct GNUNET_JSON_Specification hist_spec[] = { GNUNET_JSON_spec_string ("sign", @@ -99,7 +99,7 @@ parse_account_history (struct TALER_BANK_HistoryHandle *hh, GNUNET_JSON_spec_absolute_time ("date", &td.execution_date), GNUNET_JSON_spec_uint64 ("row_id", - &serial_id), + &row_id), GNUNET_JSON_spec_string ("wt_subject", (const char **) &td.wire_transfer_subject), GNUNET_JSON_spec_uint64 ("counterpart", @@ -144,7 +144,7 @@ parse_account_history (struct TALER_BANK_HistoryHandle *hh, MHD_HTTP_OK, TALER_EC_NONE, direction, - serial_id, + row_id, &td, transaction); json_decref (td.account_details); -- cgit v1.2.3