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