2018-01-03 21:19:09 +08:00
|
|
|
#!/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
|
2018-01-14 19:49:20 +08:00
|
|
|
CC_NAME=${CC_02_NAME}
|
|
|
|
CC_PATH=${CC_02_PATH}
|
2018-01-18 13:31:00 +08:00
|
|
|
echo_b "=== Installing chaincode ${CC_NAME} on all 4 peers... ==="
|
2018-01-03 21:19:09 +08:00
|
|
|
|
2018-01-18 13:31:00 +08:00
|
|
|
for org in "${ORGS[@]}"
|
|
|
|
do
|
|
|
|
for peer in "${PEERS[@]}"
|
|
|
|
do
|
|
|
|
chaincodeInstall $org $peer ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH}
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
echo_g "=== Install chaincode done ==="
|
|
|
|
|
|
|
|
echo
|