Skip to content

Commit

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

Ok(
u32::try_from(count).map_err(Error::ConversionDatabaseInt)?
)
Ok(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 be1800d

Please sign in to comment.