diff --git a/include/xrpl/basics/Number.h b/include/xrpl/basics/Number.h index 98df054ce1..a79f83fb7f 100644 --- a/include/xrpl/basics/Number.h +++ b/include/xrpl/basics/Number.h @@ -434,11 +434,6 @@ public: if (l.exponent_ < r.exponent_) return !lneg; - // If equal signs and exponents, compare mantissas. - if (lneg) - // If negative, the operator is reversed. - return l.mantissa_ > r.mantissa_; - return l.mantissa_ < r.mantissa_; }