Fixed error with wrong placeholder (#1069)

* Fixed error with wrong placeholder

Add concept of schema, so each test is isolated
This commit is contained in:
C
2025-09-12 13:17:40 -03:00
committed by GitHub
parent f2f5425395
commit 0bf5325927
5 changed files with 121 additions and 14 deletions

View File

@@ -923,7 +923,7 @@ VALUES (:quote_id, :amount, :timestamp);
query(
r#"
DELETE FROM melt_quote
WHERE id=?
WHERE id=:id
"#,
)?
.bind("id", quote_id.to_string())
@@ -1452,7 +1452,7 @@ where
FROM
proof
WHERE
keyset_id=?
keyset_id=:keyset_id
"#,
)?
.bind("keyset_id", keyset_id.to_string())