From ded8c08dc3bcef803966032130c25afa1ec4179a Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Tue, 4 Nov 2025 13:32:33 -0500 Subject: [PATCH] Temporarily disable the num payments guard --- src/xrpld/app/tx/detail/LoanSet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xrpld/app/tx/detail/LoanSet.cpp b/src/xrpld/app/tx/detail/LoanSet.cpp index 329d400f89..07ea1f631a 100644 --- a/src/xrpld/app/tx/detail/LoanSet.cpp +++ b/src/xrpld/app/tx/detail/LoanSet.cpp @@ -376,6 +376,7 @@ LoanSet::checkGuards( return tecPRECISION_LOSS; } +#if LOANTEMP // Guard 4: if the rounded periodic payment is large enough that the // loan can't be amortized in the specified number of payments, raise an // error @@ -396,6 +397,7 @@ LoanSet::checkGuards( return tecPRECISION_LOSS; } } +#endif return tesSUCCESS; }