Skip to content

Commit

Permalink
Remove dbg! statement
Browse files Browse the repository at this point in the history
  • Loading branch information
HCastano committed Jul 16, 2024
1 parent 55d57e9 commit e64fa4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/threshold-signature-server/src/helpers/launch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ pub async fn setup_mnemonic(kv: &KvManager, mnemonic: bip39::Mnemonic) {
pub async fn threshold_account_id(kv: &KvManager) -> String {
let mnemonic = kv.kv().get(FORBIDDEN_KEY_MNEMONIC).await.expect("Issue getting mnemonic");
let pair = <sr25519::Pair as Pair>::from_phrase(
dbg!(&String::from_utf8(mnemonic).expect("Issue converting mnemonic to string")),
&String::from_utf8(mnemonic).expect("Issue converting mnemonic to string"),
None,
)
.expect("Issue converting mnemonic to pair");
Expand Down

0 comments on commit e64fa4d

Please sign in to comment.