From 8b6b075397d17164f1ac2025da60195bfbb6e7b3 Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Thu, 4 Jun 2026 19:51:36 -0400 Subject: [PATCH] Remove the fix: Use this commit to show that tests fail without the fix --- include/xrpl/basics/Number.h | 5 ----- 1 file changed, 5 deletions(-) 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_; }