mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-18 13:14:59 +01:00
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:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user