Skip to content

Commit

Permalink
Merge pull request #53 from bithyve/fix/add-m-to-path
Browse files Browse the repository at this point in the history
Re-add m to path
  • Loading branch information
ben-kaufman authored Nov 28, 2024
2 parents 576c1b9 + 0dcb1c7 commit a576250
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src-tauri/src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ pub fn get_xpubs(
}

Ok(json!({
"singleSigPath": ss_path.to_string(),
"singleSigPath": format!("m/{}", ss_path.to_string()),
"singleSigXpub": single_sig_xpub.to_string(),
"multiSigPath": ms_path.to_string(),
"multiSigPath": format!("m/{}", ms_path.to_string()),
"multiSigXpub": multi_sig_xpub.to_string(),
"taprootPath": tr_path.to_string(),
"taprootPath": format!("m/{}", tr_path.to_string()),
"taprootXpub": taproot_xpub.to_string(),
"mfp": hwi_state.fingerprint.as_ref().unwrap().to_string().to_uppercase(),
}))
Expand Down

0 comments on commit a576250

Please sign in to comment.