From 587cb2533c23096dda118ee01c17f0cb16ec25a3 Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Tue, 21 Oct 2025 18:12:52 -0400 Subject: [PATCH] Fix build error - XRPL_ASSERT Antithesis expansion --- src/xrpld/app/misc/LendingHelpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrpld/app/misc/LendingHelpers.h b/src/xrpld/app/misc/LendingHelpers.h index 475cc39ca7..4c7d073fc3 100644 --- a/src/xrpld/app/misc/LendingHelpers.h +++ b/src/xrpld/app/misc/LendingHelpers.h @@ -323,7 +323,7 @@ computeRoundedInterestComponent( { // Start by just using the non-principal part of the payment for interest Number roundedInterest = roundedPeriodicPayment - roundedPrincipal; - XRPL_ASSERT( + XRPL_ASSERT_PARTS( isRounded(asset, roundedInterest, scale), "ripple::detail::computeRoundedInterestComponent", "initial interest computation is rounded");