Skip to content

Commit

Permalink
remove println from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ralexstokes committed Oct 18, 2023
1 parent 6c73998 commit 5c5fdf6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ethereum-consensus/src/crypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -556,11 +556,9 @@ mod tests {
let sig = sk.sign(msg);

let serialized_key = serde_json::to_string(&pk).unwrap();
println!("{serialized_key}");
let recovered_key: PublicKey = serde_json::from_str(&serialized_key).unwrap();
assert_eq!(pk, recovered_key);
let serialized_signature = serde_json::to_string(&sig).unwrap();
println!("{serialized_signature}");
let recovered_signature: Signature = serde_json::from_str(&serialized_signature).unwrap();
assert_eq!(sig, recovered_signature);
}
Expand Down

0 comments on commit 5c5fdf6

Please sign in to comment.