{
    "Function": "slitherConstructorVariables",
    "File": "contracts/services/ReentryProtection.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract ReentryProtection {\n  // The reentry protection state mutex\n  bool internal mutex = false;\n\n  // This modifier can be used on functions with external calls to\n  // prevent reentry attacks.\n  // Constraints:\n  //   Protected functions must have only one point of exit.\n  //   Protected functions cannot use the `return` keyword\n  //   Protected functions return values must be through return parameters.\n  modifier preventReentry() {\n    require(!mutex, 'ElasticDAO: Reentry Detected');\n\n    mutex = true;\n    _;\n    mutex = false;\n  }\n}"
}