Skip to content

Commit

Permalink
fix unrelated unrelated clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffgrunewald committed Jan 3, 2024
1 parent c5ccb27 commit a22788f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mobile_config_cli/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ impl AuthClient {
keypair: &Keypair,
) -> Result<Vec<PublicKey>> {
let mut request = AuthorizationListReqV1 {
role: role.try_into()?,
role: role.into(),
signer: keypair.public_key().into(),
signature: vec![],
};
Expand Down
2 changes: 1 addition & 1 deletion mobile_verifier/src/speedtests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ where
speedtest_report: CellSpeedtestIngestReport,
result: SpeedtestVerificationResult,
) -> anyhow::Result<()> {
let ingest_report: SpeedtestIngestReportV1 = speedtest_report.try_into()?;
let ingest_report: SpeedtestIngestReportV1 = speedtest_report.into();
let timestamp: u64 = Utc::now().timestamp_millis() as u64;
let proto = VerifiedSpeedtestProto {
report: Some(ingest_report),
Expand Down

0 comments on commit a22788f

Please sign in to comment.