fix build

This commit is contained in:
Mayukha Vadari
2026-07-29 17:31:41 -04:00
parent e415c6d9eb
commit b1383d764a
2 changed files with 3 additions and 3 deletions

View File

@@ -148,7 +148,7 @@ next(Keylet const& k);
*/
/** @{ */
Keylet
ticket(AccountID const& id, SeqProxy ticketSeq);
ticket(AccountID const& id, SeqProxy const& ticketSeq);
inline Keylet
ticket(uint256 const& key)
@@ -373,7 +373,7 @@ loanBroker(uint256 const& key)
}
Keylet
loan(uint256 const& loanBrokerID, SeqProxy loanSeq) noexcept;
loan(uint256 const& loanBrokerID, SeqProxy const& loanSeq) noexcept;
inline Keylet
loan(uint256 const& key)

View File

@@ -569,7 +569,7 @@ loanBroker(AccountID const& owner, SeqProxy const& seq) noexcept
}
Keylet
loan(uint256 const& loanBrokerID, SeqProxy loanSeq) noexcept
loan(uint256 const& loanBrokerID, SeqProxy const& loanSeq) noexcept
{
return loan(indexHash(LedgerNameSpace::Loan, loanBrokerID, loanSeq.value()));
}