Skip to content

Commit

Permalink
wip: cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Jun 15, 2022
1 parent 4a9a4c0 commit 02e7ad5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion fil-proofs-param/src/bin/paramfetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,13 @@ fn download_file_with_ipget(
ipget_args: &Option<String>,
verbose: bool,
) -> Result<()> {
let mut args = vec![cid, "-o", path.to_str().unwrap()];
let mut args = vec![
cid,
"-p",
"Qmde7irdYqkbhfFsu6xKzBgmGWJPnx8bS7TNVdAko4gswW",
"-o",
path.to_str().unwrap(),
];
if let Some(ipget_args) = ipget_args {
args.extend(ipget_args.split_whitespace());
}
Expand Down

0 comments on commit 02e7ad5

Please sign in to comment.