From fff654961ab68cb8a4ab348043c9eedaf6010d79 Mon Sep 17 00:00:00 2001 From: Wisdom Ogwu Date: Thu, 27 Jun 2024 10:30:55 +0100 Subject: [PATCH] wip --- singer-utils/src/uint/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/singer-utils/src/uint/constants.rs b/singer-utils/src/uint/constants.rs index cef8e4d44..6f2345bcd 100644 --- a/singer-utils/src/uint/constants.rs +++ b/singer-utils/src/uint/constants.rs @@ -62,5 +62,5 @@ impl AddSubConstants> { // TODO: if guaranteed no overflow, then we don't need to range check the highest limb // hence this can be (N_OPERANDS - 1) * N_RANGE_CELLS_PER_CELL // update this once, range check logic doesn't assume all limbs - pub const N_RANGE_CELLS_IN_CARRY_NO_OVERFLOW: usize = UInt::::N_RANGE_CELLS; + pub const N_RANGE_CELLS_NO_OVERFLOW: usize = UInt::::N_RANGE_CELLS; }