From 767c99adf5b2e878963b1ecac9bdde7683f1e67e Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Thu, 18 May 2017 03:43:15 +0000 Subject: [PATCH] Remove unused assignment in a decaf test. --- src/decaf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decaf.rs b/src/decaf.rs index 1b9cccb..414f921 100644 --- a/src/decaf.rs +++ b/src/decaf.rs @@ -672,7 +672,7 @@ mod test { // Check that P is on the curve assert!(P.0.is_valid()); // Check that P is in the image of the decaf map - let compressed_P = P.compress(); + P.compress(); } } }