{
    "Function": "setNewRound",
    "File": "src/RankedBattle.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "StakeAtRisk"
    ],
    "Internal Calls": [
        "require(bool)",
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setNewRound() external {\n        require(isAdmin[msg.sender]);\n        require(totalAccumulatedPoints[roundId] > 0);\n        roundId += 1;\n        _stakeAtRiskInstance.setNewRound(roundId);\n        rankedNrnDistribution[roundId] = rankedNrnDistribution[roundId - 1];\n    }"
}