{
    "Function": "_onlyCouncil",
    "File": "contracts/governance/GovernorAlpha.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _onlyCouncil() private view {\n        require(\n            msg.sender == council,\n            \"GovernorAlpha::_onlyCouncil: only council can call\"\n        );\n    }"
}