Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed Apr 30, 2024
1 parent 8cca4d7 commit 7edef68
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/actions/attestation/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,7 @@ pub async fn check_attestation_local(
.map_err(|e| err_custom_create!("Failed to serialize attestation details: {}", e))?
);

let items = attestation_schema
.schema
.split(',')
.collect::<Vec<&str>>();
let items = attestation_schema.schema.split(',').collect::<Vec<&str>>();
log::debug!("There are {} items in the schema", items.len());
let mut param_types = Vec::new();
let mut param_names = Vec::new();
Expand Down

0 comments on commit 7edef68

Please sign in to comment.