Change note selection query to select notes > 5000 zats, not >= 5000 zats.

Also the issue reference was wrong.

Signed-off-by: Daira-Emma Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira-Emma Hopwood 2024-06-28 18:03:43 +01:00
parent 9c082dca3e
commit 38296634d9
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ where
INNER JOIN transactions
ON transactions.id_tx = {table_prefix}_received_notes.tx
WHERE {table_prefix}_received_notes.account_id = :account
AND value >= 5000 -- FIXME #1016, allow selection of a dust inputs
AND value > 5000 -- FIXME #1316, allow selection of dust inputs
AND accounts.ufvk IS NOT NULL
AND recipient_key_scope IS NOT NULL
AND nf IS NOT NULL