From 359cda1d1708acddb763e502df3fa717a2818bba Mon Sep 17 00:00:00 2001 From: Constance Date: Mon, 16 Oct 2023 15:16:41 +0200 Subject: [PATCH] Do not expose anymore from_coordinates_unchecked --- halo2_gadgets/src/ecc/chip.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/halo2_gadgets/src/ecc/chip.rs b/halo2_gadgets/src/ecc/chip.rs index 119b1670f6..402020384b 100644 --- a/halo2_gadgets/src/ecc/chip.rs +++ b/halo2_gadgets/src/ecc/chip.rs @@ -48,7 +48,7 @@ impl EccPoint { /// Constructs a point from its coordinates, without checking they are on the curve. /// /// This is an internal API that we only use where we know we have a valid curve point. - pub fn from_coordinates_unchecked( + pub(crate) fn from_coordinates_unchecked( x: AssignedCell, pallas::Base>, y: AssignedCell, pallas::Base>, ) -> Self {