From 86bd33f49d3170620de5038077a5c11860411bdf Mon Sep 17 00:00:00 2001 From: YaoGalteland Date: Wed, 24 Apr 2024 11:31:47 +0200 Subject: [PATCH] remove cfg[test] --- halo2_gadgets/src/sinsemilla_opt/chip/hash_to_point.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/halo2_gadgets/src/sinsemilla_opt/chip/hash_to_point.rs b/halo2_gadgets/src/sinsemilla_opt/chip/hash_to_point.rs index b62a8ae152..282ef6dc9a 100644 --- a/halo2_gadgets/src/sinsemilla_opt/chip/hash_to_point.rs +++ b/halo2_gadgets/src/sinsemilla_opt/chip/hash_to_point.rs @@ -51,7 +51,6 @@ where // FIXME: calling construct_base is possibly(!) non-optimal let (x_a, y_a, zs_sum) = self.hash_all_pieces(region, offset, message, x_a, y_a)?; - #[cfg(test)] self.check_hash_result(EccPointQ::PrivatePoint(Q), message, x_a, y_a, zs_sum) }