Remove printlns
This commit is contained in:
parent
feb6f7be51
commit
d9a25c23c9
2 changed files with 1 additions and 2 deletions
|
@ -223,7 +223,6 @@ fn test_keygen(
|
|||
let fp = fp.as_bytes();
|
||||
assert_eq!(fp.len(), 20);
|
||||
|
||||
println!("fp {:?}", fp);
|
||||
Ok(fp.try_into().unwrap())
|
||||
};
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ pub(crate) fn gen_key(
|
|||
|
||||
let pubkey = tlv_to_pubkey(&tlv)?;
|
||||
|
||||
println!("public {:x?}", pubkey);
|
||||
log::trace!("public {:x?}", pubkey);
|
||||
|
||||
Ok(pubkey)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue