17 lines
294 B
Bash
17 lines
294 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
|
|
|
|
echo_b "=== List chaincode on all peer0.org1... ==="
|
|
|
|
chaincodeList 1 0 ${APP_CHANNEL}
|
|
|
|
echo_g "=== List chaincode done ==="
|
|
|
|
echo
|