{
    "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        uint256 votingPeriod_\n    ) GovernorAlpha(guardian_, xVader_, feeReceiver_, feeAmount_, council_, votingPeriod_) {}\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}"
}