We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc45b5 commit 8ec9c0aCopy full SHA for 8ec9c0a
crates/chain/src/rusqlite_impl.rs
@@ -352,9 +352,10 @@ where
352
Self::TXS_TABLE_NAME,
353
))?;
354
for (&txid, &last_seen) in &self.last_seen {
355
+ let checked_time = last_seen.to_sql()?;
356
statement.execute(named_params! {
357
":txid": Impl(txid),
- ":last_seen": Some(last_seen),
358
+ ":last_seen": Some(checked_time),
359
})?;
360
}
361
0 commit comments