From bfe201d95155618c14a5ac935a18da46e4b5eacc Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Tue, 26 Oct 2021 14:38:18 -0700 Subject: [PATCH] fmt --- src/gadgets/biguint.rs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/gadgets/biguint.rs b/src/gadgets/biguint.rs index 1f4ccbb5..9b3895a7 100644 --- a/src/gadgets/biguint.rs +++ b/src/gadgets/biguint.rs @@ -195,20 +195,12 @@ impl, const D: usize> CircuitBuilder { (div, rem) } - pub fn div_biguint( - &mut self, - a: BigUintTarget, - b: BigUintTarget, - ) -> BigUintTarget { + pub fn div_biguint(&mut self, a: BigUintTarget, b: BigUintTarget) -> BigUintTarget { let (div, _rem) = self.div_rem_biguint(a, b); div } - pub fn rem_biguint( - &mut self, - a: BigUintTarget, - b: BigUintTarget, - ) -> BigUintTarget { + pub fn rem_biguint(&mut self, a: BigUintTarget, b: BigUintTarget) -> BigUintTarget { let (_div, rem) = self.div_rem_biguint(a, b); rem }