{
    "Function": "withdraw",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "iDAOVAULT"
    ],
    "Internal Calls": [
        "removeVote",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function withdraw(address pool) external {\n        removeVote(); // Users weight is removed from the current open DAO proposal\n        require(_DAOVAULT.withdraw(pool, msg.sender), \"!transfer\"); // User receives their withdrawal\n    }"
}