From f5052aeab792af3bd517a3eeda9b97dcf9a5e818 Mon Sep 17 00:00:00 2001 From: Andrei Kozlov Date: Wed, 31 Jul 2024 12:03:56 +0300 Subject: [PATCH] Add missing view modifier on IPoolConfigurator methods --- src/core/contracts/interfaces/IPoolConfigurator.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/contracts/interfaces/IPoolConfigurator.sol b/src/core/contracts/interfaces/IPoolConfigurator.sol index 4c39d44e..6ba397e5 100644 --- a/src/core/contracts/interfaces/IPoolConfigurator.sol +++ b/src/core/contracts/interfaces/IPoolConfigurator.sol @@ -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); }