{
    "Function": "constructor",
    "File": "governance/contracts/bridges/FxGovernorTunnel.sol",
    "Parent Contracts": [
        "governance/contracts/bridges/FxGovernorTunnel.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert ZeroAddress()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(address _fxChild, address _rootGovernor) {\n        // Check fo zero addresses\n        if (_fxChild == address(0) || _rootGovernor == address(0)) {\n            revert ZeroAddress();\n        }\n\n        fxChild = _fxChild;\n        rootGovernor = _rootGovernor;\n    }"
}