{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/mocks/MockGovernorAlpha.sol",
    "Parent Contracts": [
        "contracts/governance/GovernorAlpha.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)",
        "keccak256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract MockGovernorAlpha is GovernorAlpha {\n    constructor(\n        address guardian_,\n        address xVader_,\n        address feeReceiver_,\n        uint256 feeAmount_,\n        address council_\n    )\n        GovernorAlpha(\n            guardian_,\n            xVader_,\n            feeReceiver_,\n            feeAmount_,\n            council_\n        )\n    {}\n\n    function votingPeriod() public pure override returns (uint256) {\n        return 50;\n    }\n\n    /// @notice mock function to get chain id from CHAINID opcode.\n    /// Using ganache in truffle sets chainid but the a separate ganache or ganache in solidity-coverage\n    /// does not set the CHAINID opcode and it default to 1, which results in web3.eth.getChainId and CHAINID opcode\n    /// both returning different values.\n    /// https://github.com/ethereum/web3.py/issues/1677\n    function CHAINID() public view returns (uint256 chainId) {\n        assembly {\n            chainId := chainid()\n        }\n    }\n}"
}