Skip to content

Commit d84dfa1

Browse files
committed
chore: address clippy warnings
1 parent df4dc46 commit d84dfa1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

aggregation_mode/bin/write_program_image_id_vk_hash.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ fn main() {
3232
});
3333

3434
// Write to the file
35-
fs::write(
36-
&dest_path,
37-
serde_json::to_string_pretty(&json_data).unwrap(),
38-
)
39-
.unwrap();
35+
fs::write(dest_path, serde_json::to_string_pretty(&json_data).unwrap()).unwrap();
4036

4137
info!("Program ids written to {:?}", dest_path);
4238
}

0 commit comments

Comments
 (0)