{
    "Function": "_delistBondingAsset",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "completeProposal"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _delistBondingAsset(uint _proposalID) internal {\n        address _proposedAddress = mapPID_address[_proposalID]; // Get the proposed new asset\n        isListed[_proposedAddress] = false; // Unregister asset as listed for Bond (Keep it in the array though; as this is used in the UI)\n        completeProposal(_proposalID); // Finalise the proposal\n    }"
}