mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-16 00:55:49 +00:00
Fix build errors due to private type access
This commit is contained in:
@@ -319,15 +319,15 @@ struct LatePaymentParams
|
|||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
template <AssetType A>
|
template <AssetType A, class NumberProxy, class Int32Proxy>
|
||||||
Expected<LoanPaymentParts, TER>
|
Expected<LoanPaymentParts, TER>
|
||||||
handleLatePayment(
|
handleLatePayment(
|
||||||
A const& asset,
|
A const& asset,
|
||||||
ApplyView& view,
|
ApplyView& view,
|
||||||
STObject::ValueProxy<STNumber>& principalOutstandingField,
|
NumberProxy& principalOutstandingField,
|
||||||
STObject::ValueProxy<STUInt32>& paymentRemainingField,
|
Int32Proxy& paymentRemainingField,
|
||||||
STObject::ValueProxy<STUInt32>& prevPaymentDateField,
|
Int32Proxy& prevPaymentDateField,
|
||||||
STObject::ValueProxy<STUInt32>& nextDueDateField,
|
Int32Proxy& nextDueDateField,
|
||||||
PeriodicPaymentParts const& periodic,
|
PeriodicPaymentParts const& periodic,
|
||||||
std::uint32_t const startDate,
|
std::uint32_t const startDate,
|
||||||
std::uint32_t const paymentInterval,
|
std::uint32_t const paymentInterval,
|
||||||
|
|||||||
Reference in New Issue
Block a user