invoices/sqldb: query by ChanID when updating AMP invoice preimage

This commit is contained in:
Alex Akselrod
2024-08-21 17:33:37 -07:00
committed by Olaoluwa Osuntokun
parent ce442a5083
commit e152a52625
6 changed files with 14 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ WHERE (
-- name: UpdateAMPSubInvoiceHTLCPreimage :execresult
UPDATE amp_sub_invoice_htlcs AS a
SET preimage = $4
SET preimage = $5
WHERE a.invoice_id = $1 AND a.set_id = $2 AND a.htlc_id = (
SELECT id FROM invoice_htlcs AS i WHERE i.htlc_id = $3
SELECT id FROM invoice_htlcs AS i WHERE i.chan_id = $3 AND i.htlc_id = $4
);