Skip to content

Commit

Permalink
Add missing view modifier on IPoolConfigurator methods
Browse files Browse the repository at this point in the history
  • Loading branch information
kyzia551 committed Jul 31, 2024
1 parent 84e158c commit f5052ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/contracts/interfaces/IPoolConfigurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -561,15 +561,15 @@ interface IPoolConfigurator {
* @notice Gets pending ltv value
* @param asset The new siloed borrowing state
*/
function getPendingLtv(address asset) external returns (uint256);
function getPendingLtv(address asset) external view returns (uint256);

/**
* @notice Gets the address of the external ConfiguratorLogic
*/
function getConfiguratorLogic() external returns (address);
function getConfiguratorLogic() external view returns (address);

/**
* @notice Gets the maximum liquidations grace period allowed, in seconds
*/
function MAX_GRACE_PERIOD() external returns (uint40);
function MAX_GRACE_PERIOD() external view returns (uint40);
}

0 comments on commit f5052ae

Please sign in to comment.