Skip to content
Open

fix #88

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/REVLoans.sol
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ contract REVLoans is ERC721, ERC2771Context, Ownable, IREVLoans {
/// @param loanId The ID of the loan being adjusted.
/// @param maxRepayBorrowAmount The maximum amount being paid off, denominated in the token of the source's
/// accounting context.
/// @param collateralCountToReturn The amount of collateral to return being returned from the loan.
/// @param collateralCountToReturn The amount of collateral being returned from the loan.
/// @param beneficiary The address receiving the returned collateral and any tokens resulting from paying fees.
/// @param allowance An allowance to faciliate permit2 interactions.
/// @return paidOffLoanId The ID of the loan after it's been paid off.
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IREVLoans.sol
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ interface IREVLoans {
function repayLoan(
uint256 loanId,
uint256 maxRepayBorrowAmount,
uint256 newCollateral,
uint256 collateralCountToReturn,
address payable beneficiary,
JBSingleAllowance calldata allowance
)
Expand Down