{
    "Function": "moveUtils",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "completeProposal"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function moveUtils(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        _UTILS = iUTILS(_proposedAddress); // Change the DAO to point to the new UTILS address\n        completeProposal(_proposalID); // Finalise the proposal\n    }"
}