diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-02-04 21:54:47 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-02-04 21:54:47 +0100 |
commit | 5a18e955ebd663a6e1318378002a6368a7c07566 (patch) | |
tree | 9f1d6349f36bf053253382705e2032e8e738c5ba /src/exchangedb/pg_select_aml_process.c | |
parent | 47b9ef598dc33e10294c1af4c7cf0e2ac71f553e (diff) |
-fix AML decision update logic and history fetch logic
Diffstat (limited to 'src/exchangedb/pg_select_aml_process.c')
-rw-r--r-- | src/exchangedb/pg_select_aml_process.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchangedb/pg_select_aml_process.c b/src/exchangedb/pg_select_aml_process.c index 6ee0dbeb9..5df5fe657 100644 --- a/src/exchangedb/pg_select_aml_process.c +++ b/src/exchangedb/pg_select_aml_process.c @@ -140,25 +140,25 @@ TEH_PG_select_aml_process ( "SELECT" " aml_status_serial_id" ",h_payto" - ",threshold_var" + ",threshold_val" ",threshold_frac" ",status" " FROM aml_status" " WHERE aml_status_serial_id > $2" " AND status = $1" - " ORDER BY aml_status_serial_id INC" + " ORDER BY aml_status_serial_id ASC" " LIMIT $3"); PREPARE (pg, "select_aml_process_dec", "SELECT" " aml_status_serial_id" ",h_payto" - ",threshold_var" + ",threshold_val" ",threshold_frac" ",status" " FROM aml_status" " WHERE aml_status_serial_id < $2" - " AND $1 = status & $1" + " AND status = $1" " ORDER BY aml_status_serial_id DESC" " LIMIT $3"); qs = GNUNET_PQ_eval_prepared_multi_select (pg->conn, |