#!/bin/bash # Importing useful functions for cc testing if [ -f ./func.sh ]; then source ./func.sh elif [ -f scripts/func.sh ]; then source scripts/func.sh fi ## Install chaincode on all peers CC_NAME=${CC_NAME:-$CC_02_NAME} CC_PATH=${CC_PATH:-$CC_02_PATH} echo_b "=== Query Chaincode commit status ${CC_NAME} on all organizations ... ===" for org in "${ORGS[@]}" do t="\${ORG${org}_PEER0_URL}" && peer_url=`eval echo $t` t="\${ORG${org}_PEER0_TLS_ROOTCERT}" && peer_tls_rootcert=`eval echo $t` chaincodeQueryCommitted "$org" 0 ${peer_url} ${peer_tls_rootcert} "${APP_CHANNEL}" ${CC_NAME} done echo_g "=== Query Chaincode commit status done ===" echo