Temporarily disable the num payments guard

This commit is contained in:
Ed Hennis
2025-11-04 13:32:33 -05:00
parent edc2c3765c
commit ded8c08dc3

View File

@@ -376,6 +376,7 @@ LoanSet::checkGuards(
return tecPRECISION_LOSS; return tecPRECISION_LOSS;
} }
#if LOANTEMP
// Guard 4: if the rounded periodic payment is large enough that the // 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 // loan can't be amortized in the specified number of payments, raise an
// error // error
@@ -396,6 +397,7 @@ LoanSet::checkGuards(
return tecPRECISION_LOSS; return tecPRECISION_LOSS;
} }
} }
#endif
return tesSUCCESS; return tesSUCCESS;
} }