commit 9e4234a552cb0a6a12b6e7ecdb7d45eaa635896c
parent d66ce5571e2c8b4732560c36a5b77ca1d7e5cd91
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Mon, 26 May 2025 13:37:53 +0200
another #10020 fix
Diffstat:
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/exchangedb/exchange_do_insert_aml_decision.sql b/src/exchangedb/exchange_do_insert_aml_decision.sql
@@ -126,7 +126,7 @@ THEN
(h_normalized_payto
,is_wallet
) VALUES (
- in_h_full_payto
+ in_h_normalized_payto
,out_is_wallet
)
RETURNING access_token
diff --git a/src/exchangedb/exchange_do_insert_successor_measure.sql b/src/exchangedb/exchange_do_insert_successor_measure.sql
@@ -93,7 +93,8 @@ THEN
VALUES
(in_h_full_payto
,in_h_normalized_payto
- ,in_payto_uri);
+ ,in_payto_uri)
+ ON CONFLICT DO NOTHING;
END IF;