{
    "Function": "popValidators",
    "File": "src/OperatorRegistry.sol",
    "Parent Contracts": [
        "src/Utils/Owned.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyByOwnGov"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function popValidators(uint256 times) public onlyByOwnGov {\n        // Loop through and remove validator entries at the end\n        for (uint256 i = 0; i < times; ++i) {\n            validators.pop();\n        }\n\n        emit ValidatorsPopped(times);\n    }"
}