Remove printlns

This commit is contained in:
Heiko Schaefer 2021-08-07 00:54:01 +02:00
parent feb6f7be51
commit d9a25c23c9
2 changed files with 1 additions and 2 deletions

View file

@ -223,7 +223,6 @@ fn test_keygen(
let fp = fp.as_bytes(); let fp = fp.as_bytes();
assert_eq!(fp.len(), 20); assert_eq!(fp.len(), 20);
println!("fp {:?}", fp);
Ok(fp.try_into().unwrap()) Ok(fp.try_into().unwrap())
}; };

View file

@ -112,7 +112,7 @@ pub(crate) fn gen_key(
let pubkey = tlv_to_pubkey(&tlv)?; let pubkey = tlv_to_pubkey(&tlv)?;
println!("public {:x?}", pubkey); log::trace!("public {:x?}", pubkey);
Ok(pubkey) Ok(pubkey)
} }