{
    "Function": "updateWinnersPerPeriod",
    "File": "src/MergingPool.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function updateWinnersPerPeriod(uint256 newWinnersPerPeriodAmount) external {\n        require(isAdmin[msg.sender]);\n        winnersPerPeriod = newWinnersPerPeriodAmount;\n    }"
}