{
    "Function": "setGovernor",
    "File": "contracts/contracts/Voter.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setGovernor(address _governor) public {\n        require(msg.sender == governor);\n        governor = _governor;\n    }"
}