{
    "Function": "checkProposal",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function checkProposal() internal {\n        require(mapPID_open[currentProposal] == false, '!open'); // There must not be an existing open proposal\n        proposalCount += 1; // Increase proposal count\n        currentProposal = proposalCount; // Set current proposal to the new count\n        mapPID_open[currentProposal] = true; // Set new proposal as open status\n        mapPID_startTime[currentProposal] = block.timestamp; // Set the start time of the proposal to now\n    }"
}