Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cylewitruk committed Jan 10, 2025
1 parent be1800d commit f84b080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signer/src/storage/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ impl super::DbRead for PgStore {
.await
.map_err(Error::SqlxQuery)?;

Ok(u32::try_from(count).map_err(Error::ConversionDatabaseInt)?)
u32::try_from(count).map_err(Error::ConversionDatabaseInt)
}

/// Find the last key rotation by iterating backwards from the stacks
Expand Down

0 comments on commit f84b080

Please sign in to comment.