24 lines
626 B
Bash
24 lines
626 B
Bash
#!/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
|
|
|
|
CC_NAME=${CC_NAME:-$CC_02_NAME}
|
|
|
|
## Query the installed chaincode on all peers
|
|
echo_b "=== Get Chaincode packages installed 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)
|
|
chaincodeGetInstalled "$org" 0 ${peer_url} ${peer_tls_rootcert} ${CC_NAME}
|
|
done
|
|
|
|
echo_g "=== Get Chaincode installed packages done ==="
|
|
|
|
echo
|