Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlymite committed Apr 4, 2024
1 parent 2a085e1 commit b6ff254
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/interfaces/IRiskSteward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ interface IRiskSteward {
* @param newLtv new loan to value which has been set for the asset
* @param nextAllowedTimestamp next permitted timestamp for a new LTV update
*/
event LtvUpdated(address indexed asset, uint256 newLtv, uint40 indexed nextAllowedTimestamp);
event LtvUpdated(address indexed asset, uint256 indexed newLtv, uint40 indexed nextAllowedTimestamp);

/**
* @notice Emitted when the liquidation threshold has been updated using the steward
Expand All @@ -147,7 +147,7 @@ interface IRiskSteward {
*/
event LiquidationThresholdUpdated(
address indexed asset,
uint256 newLiquidationThreshold,
uint256 indexed newLiquidationThreshold,
uint40 indexed nextAllowedTimestamp
);

Expand All @@ -159,7 +159,7 @@ interface IRiskSteward {
*/
event LiquidationBonusUpdated(
address indexed asset,
uint256 newLiquidationBonus,
uint256 indexed newLiquidationBonus,
uint40 indexed nextAllowedTimestamp
);

Expand All @@ -171,7 +171,7 @@ interface IRiskSteward {
*/
event DebtCeilingUpdated(
address indexed asset,
uint256 newDebtCeiling,
uint256 indexed newDebtCeiling,
uint40 indexed nextAllowedTimestamp
);

Expand Down

0 comments on commit b6ff254

Please sign in to comment.