{
    "Function": "_hasVoted",
    "File": "src/AdminMultisigBase.sol",
    "Parent Contracts": [
        "src/EternalStorage.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_getAdminVotedKey",
        "getBool"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _hasVoted(\n        uint256 adminEpoch,\n        bytes32 topic,\n        address account\n    ) internal view returns (bool) {\n        return getBool(_getAdminVotedKey(adminEpoch, topic, account));\n    }"
}