Skip to content

Commit

Permalink
fix: clean-up some additional warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptonemo committed Mar 31, 2021
1 parent a70a946 commit 6e479b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion filecoin-proofs/src/api/post_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ pub fn generate_single_vanilla_proof<Tree: 'static + MerkleTreeTrait>(
let comm_c = replica.safe_comm_c();
let comm_r_last = replica.safe_comm_r_last();

let mut priv_sectors = vec![fallback::PrivateSector {
let priv_sectors = vec![fallback::PrivateSector {
tree,
comm_c,
comm_r_last,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::fs::File;
use std::hint::spin_loop;
use std::marker::{PhantomData, Sync};
use std::mem::size_of;
use std::path::{Path, PathBuf};
use std::path::Path;
use std::slice;
use std::sync::atomic::{AtomicU64, AtomicUsize, Ordering};

Expand Down

0 comments on commit 6e479b9

Please sign in to comment.