docker-compose-files/hyperledger_fabric/v1.4.0/scripts/test_cc_list.sh

17 lines
313 B
Bash
Raw Normal View History

2018-12-12 18:41:19 +08:00
#!/bin/bash
# Importing useful functions for cc testing
if [ -f ./func.sh ]; then
source ../../v1.1.0/scripts/func.sh
elif [ -f scripts/func.sh ]; then
source scripts/func.sh
fi
echo_b "=== List chaincode on all peer0.org1... ==="
chaincodeList 1 0 ${APP_CHANNEL}
echo_g "=== List chaincode done ==="
echo