mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +00:00
remove debugging println!s
This commit is contained in:
parent
69c62a8a17
commit
aea15e8612
1 changed files with 0 additions and 2 deletions
|
|
@ -317,7 +317,6 @@ impl<'de> Deserialize<'de> for ExtendedPoint {
|
|||
fn visit_bytes<E>(self, v: &[u8]) -> Result<ExtendedPoint, E>
|
||||
where E: serde::de::Error
|
||||
{
|
||||
println!("VISIT_BYTES");
|
||||
if v.len() == 32 {
|
||||
let arr32 = array_ref!(v,0,32); // &[u8;32] from &[u8]
|
||||
CompressedEdwardsY(*arr32).decompress()
|
||||
|
|
@ -328,7 +327,6 @@ impl<'de> Deserialize<'de> for ExtendedPoint {
|
|||
}
|
||||
}
|
||||
|
||||
println!("DESERIALIZE");
|
||||
deserializer.deserialize_bytes(ExtendedPointVisitor)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue