Skip to content

Commit

Permalink
Merge pull request #174 from lidofinance/fix/unnecessary-cast
Browse files Browse the repository at this point in the history
Audit fix: Unnecessary Cast
  • Loading branch information
bulbozaur authored Nov 11, 2024
2 parents 00e2514 + fd8cd4d commit 3f3702d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/ResealManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ contract ResealManager is IResealManager {
/// @notice Initializes the ResealManager contract.
/// @param emergencyProtectedTimelock The address of the EmergencyProtectedTimelock contract.
constructor(ITimelock emergencyProtectedTimelock) {
EMERGENCY_PROTECTED_TIMELOCK = ITimelock(emergencyProtectedTimelock);
EMERGENCY_PROTECTED_TIMELOCK = emergencyProtectedTimelock;
}

// ---
Expand Down

0 comments on commit 3f3702d

Please sign in to comment.