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
letqry = "DELETE FROM block_validations_pending WHERE signer_signature_hash = (SELECT signer_signature_hash FROM block_validations_pending ORDER BY added_time ASC LIMIT 1) RETURNING signer_signature_hash";
1032
+
let args = params![];
1033
+
letmut stmt = self.db.prepare(qry)?;
1034
+
let sighash:Option<String> = stmt.query_row(args, |row| row.get(0)).optional()?;
0 commit comments