Skip to content

Commit

Permalink
fix: display CIDs in the CLI for the Collection (#131)
Browse files Browse the repository at this point in the history
closes #130
  • Loading branch information
ramfox authored Feb 10, 2023
1 parent 82e2f56 commit b3ee39f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,9 @@ async fn get_interactive(
out: Option<PathBuf>,
) -> Result<()> {
let out_writer = OutWriter::new();
out_writer.println(format!("Fetching: {hash}")).await;
out_writer
.println(format!("Fetching: {}", Blake3Cid::new(hash)))
.await;

out_writer
.println(format!("{} Connecting ...", style("[1/3]").bold().dim()))
Expand Down

0 comments on commit b3ee39f

Please sign in to comment.