{
    "Function": "setTimelock",
    "File": "contracts/governance/GovernorAlpha.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "onlyGuardian"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setTimelock(address _timelock) external onlyGuardian {\n        require(\n            _timelock != address(0),\n            \"GovernorAlpha::initTimelock: _timelock cannot be zero address\"\n        );\n        timelock = ITimelock(_timelock);\n    }"
}