Skip to content

Commit

Permalink
Merge pull request #365 from liquity/fix-event-params-order
Browse files Browse the repository at this point in the history
fix: incorrect order of params in Trove events
  • Loading branch information
danielattilasimon authored Aug 27, 2024
2 parents f38a0ec + ccac203 commit 2d1bfb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/src/Interfaces/ITroveEvents.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ interface ITroveEvents {
uint256 _coll,
uint256 _stake,
uint256 _annualInterestRate,
uint256 _snapshotOfTotalDebtRedist,
uint256 _snapshotOfTotalCollRedist
uint256 _snapshotOfTotalCollRedist,
uint256 _snapshotOfTotalDebtRedist
);

// Details of an operation that modifies a Trove
Expand Down Expand Up @@ -88,7 +88,7 @@ interface ITroveEvents {
uint256 _batchDebtShares,
uint256 _coll,
uint256 _stake,
uint256 _snapshotOfTotalDebtRedist,
uint256 _snapshotOfTotalCollRedist
uint256 _snapshotOfTotalCollRedist,
uint256 _snapshotOfTotalDebtRedist
);
}

0 comments on commit 2d1bfb7

Please sign in to comment.