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; }