{
    "Function": "beginReentrancyLock",
    "File": "contracts/SemiFungiblePositionManager.sol",
    "Parent Contracts": [
        "contracts/multicall/Multicall.sol",
        "contracts/tokens/ERC1155Minimal.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert ReentrantCall()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function beginReentrancyLock(uint64 poolId) internal {\n        // check if the pool is already locked, if so, revert\n        if (s_poolContext[poolId].locked) revert Errors.ReentrantCall();\n\n        // activate lock\n        s_poolContext[poolId].locked = true;\n    }"
}