{
    "Function": "shutdownPool",
    "File": "contracts/PoolManager.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [
        "IPools"
    ],
    "Internal Calls": [
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function shutdownPool(address _pools, uint256 _pid) external onlyOwner returns (bool) {\n        IPools(_pools).shutdownPool(_pid);\n        return true;\n    }"
}