{
    "Function": "_listBondingAsset",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "completeProposal"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _listBondingAsset(uint _proposalID) internal {\n        address _proposedAddress = mapPID_address[_proposalID]; // Get the proposed new asset\n        if(!isListed[_proposedAddress]){\n            isListed[_proposedAddress] = true; // Register asset as listed for Bond\n            listedBondAssets.push(_proposedAddress); // Add asset to array of listed Bond assets\n        }\n        completeProposal(_proposalID); // Finalise the proposal\n    }"
}