Skip to content

Commit

Permalink
fix: logic getters should be view (aave-dao#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Jul 31, 2024
1 parent 84e158c commit 3b09377
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/core/contracts/interfaces/IPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -801,35 +801,35 @@ interface IPool {
/**
* @notice Gets the address of the external FlashLoanLogic
*/
function getFlashLoanLogic() external returns (address);
function getFlashLoanLogic() external view returns (address);

/**
* @notice Gets the address of the external BorrowLogic
*/
function getBorrowLogic() external returns (address);
function getBorrowLogic() external view returns (address);

/**
* @notice Gets the address of the external BridgeLogic
*/
function getBridgeLogic() external returns (address);
function getBridgeLogic() external view returns (address);

/**
* @notice Gets the address of the external EModeLogic
*/
function getEModeLogic() external returns (address);
function getEModeLogic() external view returns (address);

/**
* @notice Gets the address of the external LiquidationLogic
*/
function getLiquidationLogic() external returns (address);
function getLiquidationLogic() external view returns (address);

/**
* @notice Gets the address of the external PoolLogic
*/
function getPoolLogic() external returns (address);
function getPoolLogic() external view returns (address);

/**
* @notice Gets the address of the external SupplyLogic
*/
function getSupplyLogic() external returns (address);
function getSupplyLogic() external view returns (address);
}

0 comments on commit 3b09377

Please sign in to comment.