{
    "Function": "getPending",
    "File": "contracts/token/TimelockConfig.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "EnumerableSet"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [
        "contains"
    ],
    "Low-Level Calls": [],
    "Code": "function getPending(bytes32 configId) external view returns (PendingChange memory pendingRequest) {\n    require(_pendingSet.contains(configId), 'not pending');\n    return PendingChange(configId, _pending[configId].value, _pending[configId].timestamp);\n  }"
}