docker-compose-files/hyperledger_fabric/v2.3.0/scripts/test_cc_queryinstalled.sh

22 lines
577 B
Bash
Raw Normal View History

2020-11-21 08:44:37 +08:00
#!/bin/bash
# Importing useful functions for cc testing
if [ -f ./func.sh ]; then
2021-03-04 06:06:06 +08:00
source ./func.sh
2020-11-21 08:44:37 +08:00
elif [ -f scripts/func.sh ]; then
2021-03-04 06:06:06 +08:00
source scripts/func.sh
2020-11-21 08:44:37 +08:00
fi
## Query the installed chaincode on all peers
echo_b "=== Query Chaincode installed on all organizations ... ==="
2021-03-04 06:06:06 +08:00
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)
chaincodeQueryInstalled "$org" 0 ${peer_url} ${peer_tls_rootcert}
2020-11-21 08:44:37 +08:00
done
echo_g "=== Query Chaincode installed status done ==="
echo