{
    "Function": "cancelChange",
    "File": "contracts/token/TimelockConfig.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "EnumerableSet"
    ],
    "Internal Calls": [
        "require(bool,string)",
        "onlyAdmin"
    ],
    "Library Calls": [
        "remove"
    ],
    "Low-Level Calls": [],
    "Code": "function cancelChange(bytes32 configId) external onlyAdmin {\n    require(_pendingSet.remove(configId), 'no pending request');\n\n    uint256 value = _pending[configId].value;\n\n    delete _pending[configId];\n\n    emit ChangeCanceled(configId, value);\n  }"
}