{
    "Function": "moveReserve",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "completeProposal"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function moveReserve(uint _proposalID) internal {\n        address _proposedAddress = mapPID_address[_proposalID]; // Get the proposed new address\n        require(_proposedAddress != address(0), \"!address\"); // Proposed address must be valid\n        _RESERVE = iRESERVE(_proposedAddress); // Change the DAO to point to the new RESERVE address\n        completeProposal(_proposalID); // Finalise the proposal\n    }"
}