Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing view modifier on IPoolConfigurator methods #1

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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);
}
Loading