Skip to content

Commit

Permalink
fix: i_contracts_register simplified
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmikko committed May 10, 2024
1 parent 320d30e commit 44c7692
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions contracts/interfaces/IContractsRegister.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ import {IVersion} from "./IVersion.sol";
interface IContractsRegister is IVersion {
function addPool(address) external;
function isPool(address) external view returns (bool);
function getPools() external view returns (address[] memory);

function addCreditManager(address) external;
function isCreditManager(address) external view returns (bool);
function getCreditManagers() external view returns (address[] memory);
}

0 comments on commit 44c7692

Please sign in to comment.