From fde7e67839d09724863ce47b84d48965db46bc54 Mon Sep 17 00:00:00 2001 From: zac-williamson Date: Wed, 24 Jul 2024 14:16:41 -0400 Subject: [PATCH] fixed warning --- src/lib.nr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.nr b/src/lib.nr index 91c9e9a..c017f2a 100644 --- a/src/lib.nr +++ b/src/lib.nr @@ -126,7 +126,7 @@ impl BigNumTrait for BigNum where Params: BigNumP } // n.b. needs to be declared unconstrained because we take in a mutable slice - unconstrained fn __batch_invert(x: [Self; M]) -> [Self; M] { + fn __batch_invert(x: [Self; M]) -> [Self; M] { Params::get_instance().__batch_invert(x) }