Skip to content

Commit

Permalink
cli: display device USB path information in device list
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Sep 7, 2023
1 parent 7e7e4c4 commit 380a7d1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bin/btc-hot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -525,10 +525,11 @@ impl Args {
};

println!(
"{} {} {}",
"{} {} {} on {}",
device.fingerprint.to_string().yellow(),
device.device_type.to_string(),
device.model
device.model,
device.path
);

let network = if testnet {
Expand Down

0 comments on commit 380a7d1

Please sign in to comment.