You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"SELECT txid, vout, is_locked, expiration_height FROM {}",
255
-
Self::WALLET_UTXO_LOCK_TABLE_NAME,
255
+
Self::WALLET_OUTPOINT_LOCK_TABLE_NAME,
256
256
))?;
257
257
let rows = stmt.query_map([], |row| {
258
258
Ok((
@@ -325,7 +325,7 @@ impl ChangeSet {
325
325
// Insert locked outpoints.
326
326
letmut stmt = db_tx.prepare_cached(&format!(
327
327
"INSERT INTO {}(txid, vout, is_locked, expiration_height) VALUES(:txid, :vout, :is_locked, :expiration_height) ON CONFLICT DO UPDATE SET is_locked=:is_locked, expiration_height=:expiration_height",
0 commit comments