{
    "Function": "cancelProposal",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function cancelProposal() external {\n        require(block.timestamp > (mapPID_startTime[currentProposal] + 1296000), \"!days\"); // Proposal must not be new\n        mapPID_votes[currentProposal] = 0; // Clear all votes from the proposal\n        mapPID_open[currentProposal] = false; // Set the proposal as not open (closed status)\n        emit CancelProposal(msg.sender, currentProposal);\n    }"
}