Skip to content

Commit 63e9e6f

Browse files
authored
chore: change names on events for clarity (#76)
1 parent ebf66fc commit 63e9e6f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/interfaces/IBullaFrendLend.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ interface IBullaFrendLend {
8989
//////////////////////////////////////////////////////////////*/
9090

9191
event LoanOffered(
92-
uint256 indexed loanId, address indexed offeredBy, LoanRequestParams loanOffer, ClaimMetadata metadata
92+
uint256 indexed offerId, address indexed offeredBy, LoanRequestParams loanOffer, ClaimMetadata metadata
9393
);
94-
event LoanOfferAccepted(uint256 indexed loanId, uint256 indexed claimId, uint256 fee, ClaimMetadata metadata);
95-
event LoanOfferRejected(uint256 indexed loanId, address indexed rejectedBy);
94+
event LoanOfferAccepted(uint256 indexed offerId, uint256 indexed claimId, uint256 fee, ClaimMetadata metadata);
95+
event LoanOfferRejected(uint256 indexed offerId, address indexed rejectedBy);
9696
/// @notice grossInterestPaid = interest received by creditor + protocolFee
9797
event LoanPayment(uint256 indexed claimId, uint256 grossInterestPaid, uint256 principalPaid, uint256 protocolFee);
9898
event ProtocolFeeUpdated(uint16 oldFee, uint16 newFee);

0 commit comments

Comments
 (0)