aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchangedb')
-rw-r--r--src/exchangedb/exchange_do_age_withdraw.sql6
-rw-r--r--src/exchangedb/pg_do_age_withdraw.h4
2 files changed, 2 insertions, 8 deletions
diff --git a/src/exchangedb/exchange_do_age_withdraw.sql b/src/exchangedb/exchange_do_age_withdraw.sql
index 3f1d682a4..d6ae118ae 100644
--- a/src/exchangedb/exchange_do_age_withdraw.sql
+++ b/src/exchangedb/exchange_do_age_withdraw.sql
@@ -32,8 +32,7 @@ CREATE OR REPLACE FUNCTION exchange_do_age_withdraw(
OUT balance_ok BOOLEAN,
OUT age_ok BOOLEAN,
OUT required_age INT2, -- in years ϵ [0,1..)
- OUT conflict BOOLEAN,
- OUT ruuid INT8)
+ OUT conflict BOOLEAN)
LANGUAGE plpgsql
AS $$
DECLARE
@@ -55,13 +54,11 @@ SELECT
,current_balance_frac
,gc_date
,birthday
- ,reserve_uuid
INTO
reserve_val
,reserve_frac
,reserve_gc
,reserve_birthday
- ,ruuid
FROM exchange.reserves
WHERE reserves.reserve_pub=rpub;
@@ -73,7 +70,6 @@ THEN
age_ok=FALSE;
required_age=0;
conflict=FALSE;
- ruuid=2;
RETURN;
END IF;
diff --git a/src/exchangedb/pg_do_age_withdraw.h b/src/exchangedb/pg_do_age_withdraw.h
index 5beb3133c..8f42bfb57 100644
--- a/src/exchangedb/pg_do_age_withdraw.h
+++ b/src/exchangedb/pg_do_age_withdraw.h
@@ -37,7 +37,6 @@
* @param[out] age_ok set to true if no age requirements are present on the reserve
* @param[out] required_age if @e age_ok is false, set to the maximum allowed age when withdrawing from this reserve
* @param[out] conflict set to true if there already is an entry in the database for the given pair (h_commitment, reserve_pub)
- * @param[out] ruuid set to the reserve's UUID (reserves table row)
* @return query execution status
*/
enum GNUNET_DB_QueryStatus
@@ -49,7 +48,6 @@ TEH_PG_do_age_withdraw (
bool *balance_ok,
bool *age_ok,
uint16_t *required_age,
- bool *conflict,
- uint64_t *ruuid);
+ bool *conflict);
#endif