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