[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[exchange] branch master updated: fix sql query for kyc auth
From: |
Admin |
Subject: |
[exchange] branch master updated: fix sql query for kyc auth |
Date: |
Tue, 03 Jun 2025 15:52:54 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new 61139f478 fix sql query for kyc auth
61139f478 is described below
commit 61139f478348640dc5e11d2ad4f55f473216256e
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue Jun 3 15:52:44 2025 +0200
fix sql query for kyc auth
Issue: https://bugs.taler.net/n/10064
---
src/exchangedb/exchange_do_lookup_kyc_requirement_by_row.sql | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/src/exchangedb/exchange_do_lookup_kyc_requirement_by_row.sql
b/src/exchangedb/exchange_do_lookup_kyc_requirement_by_row.sql
index 4d3db76a0..562541f72 100644
--- a/src/exchangedb/exchange_do_lookup_kyc_requirement_by_row.sql
+++ b/src/exchangedb/exchange_do_lookup_kyc_requirement_by_row.sql
@@ -106,18 +106,16 @@ END IF;
-- Check most recent reserve_in wire transfer, we also
-- allow that reserve public key for authentication!
+-- Only needed for old wallets that don't pass
+-- in the account pub explicitly.
SELECT reserve_pub
INTO out_reserve_pub
FROM reserves_in
WHERE wire_source_h_payto
- IN (SELECT wire_source_h_payto
- FROM wire_targets
+ IN (SELECT wt.wire_target_h_payto
+ FROM wire_targets wt
WHERE h_normalized_payto=in_h_normalized_payto)
ORDER BY execution_date DESC, reserve_in_serial_id DESC
LIMIT 1;
--- FIXME: may want to turn this around and pass *in* the
--- reserve_pub as an argument and then not LIMIT 1 but check
--- if any reserve_pub ever matched (and just return a BOOL
--- to indicate if the kyc-auth is OK).
END $$;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [exchange] branch master updated: fix sql query for kyc auth,
Admin <=