Skip to content

Commit

Permalink
Merge pull request #41 from bgd-labs/fix/add-view-on-configurator-int…
Browse files Browse the repository at this point in the history
…erface-methids

fix: Add missing view modifier on IPoolConfigurator methods
  • Loading branch information
kyzia551 authored Jul 31, 2024
2 parents 3b09377 + f5052ae commit 1ba60d3
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 1ba60d3

Please sign in to comment.