From 571d43cef3732ed6f491d91a9e767a80008edeb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zg=C3=BCr=20Kesim?= Date: Thu, 27 Jul 2023 23:57:07 +0200 Subject: [WiP] added TALER_AMOUNT type to Postgres - first in age_withdraw - Added a type TALER_AMOUNT (val INT8, frac INT4) to Postgres. - Added PLSQL functions/procedures - amount_normalize(a) - amount_add(a, b) - amount_left_minus_right(l, r, diff, ok bool) - Added PQ-helper functions - TALER_PQ_query_param_amount_tuple() - TALER_PQ_result_spec_amount_tuple() - In table 'age_withdraw', changed fields 'amount_with_fee_val' and '..._frac' into single field 'amount_with_fee' be of type TALER_AMOUNT - Changed functions/stored procedures 'do_age_withdraw' and 'get_age_withdraw' to use new APIs. => make check runs through without errors, age-withdraw and -reveal test passes. --- src/exchangedb/pg_get_age_withdraw.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/exchangedb/pg_get_age_withdraw.c') diff --git a/src/exchangedb/pg_get_age_withdraw.c b/src/exchangedb/pg_get_age_withdraw.c index a66051c71..62ccaa834 100644 --- a/src/exchangedb/pg_get_age_withdraw.c +++ b/src/exchangedb/pg_get_age_withdraw.c @@ -48,8 +48,9 @@ TEH_PG_get_age_withdraw ( &aw->reserve_pub), GNUNET_PQ_result_spec_uint16 ("max_age", &aw->max_age), - TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee", - &aw->amount_with_fee), + TALER_PQ_result_spec_amount_tuple ("amount_with_fee", + pg->currency, + &aw->amount_with_fee), GNUNET_PQ_result_spec_uint16 ("noreveal_index", &aw->noreveal_index), TALER_PQ_result_spec_array_blinded_coin_hash ( @@ -83,8 +84,7 @@ TEH_PG_get_age_withdraw ( ",reserve_sig" ",reserve_pub" ",max_age" - ",amount_with_fee_val" - ",amount_with_fee_frac" + ",amount_with_fee" ",noreveal_index" ",h_blind_evs" ",denom_sigs" -- cgit v1.2.3