Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeiannucci committed Oct 7, 2024
1 parent 5df0df7 commit ce1043e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sequencer/src/persistence/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,8 +569,8 @@ impl SequencerPersistence for Persistence {
&self,
decided_upgrade_certificate: Option<UpgradeCertificate<SeqTypes>>,
) -> anyhow::Result<()> {
let upgrade_certificate_bytes =
bincode::serialize(&decided_upgrade_certificate).context("serializing upgrade certificate")?;
let upgrade_certificate_bytes = bincode::serialize(&decided_upgrade_certificate)
.context("serializing upgrade certificate")?;
let mut tx = self.db.write().await?;
tx.upsert(
"upgrade_certificate",
Expand Down

0 comments on commit ce1043e

Please sign in to comment.