{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/ActionGuards.sol",
    "Parent Contracts": [
        "contracts/global/StorageLayoutV1.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "abstract contract ActionGuards is StorageLayoutV1 {\n    uint256 private constant _NOT_ENTERED = 1;\n    uint256 private constant _ENTERED = 2;\n\n    modifier nonReentrant() {\n        // On the first call to nonReentrant, _notEntered will be true\n        require(reentrancyStatus != _ENTERED, \"Reentrant call\");\n\n        // Any calls to nonReentrant after this point will fail\n        reentrancyStatus = _ENTERED;\n\n        _;\n\n        // By storing the original value once again, a refund is triggered (see\n        // https://eips.ethereum.org/EIPS/eip-2200)\n        reentrancyStatus = _NOT_ENTERED;\n    }\n}"
}