27 lines
794 B
Bash
27 lines
794 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
|
|
|
|
## Install chaincode on all peers
|
|
CC_NAME=${CC_NAME:-$CC_02_NAME}
|
|
CC_PATH=${CC_PATH:-$CC_02_PATH}
|
|
|
|
echo_b "=== Installing chaincode ${CC_NAME} on all 4 peers... ==="
|
|
|
|
for org in "${ORGS[@]}"; do
|
|
for peer in "${PEERS[@]}"; do
|
|
t="\${ORG${org}_PEER${peer}_URL}" && peer_url=$(eval echo $t)
|
|
t="\${ORG${org}_PEER${peer}_TLS_ROOTCERT}" && peer_tls_rootcert=$(eval echo $t)
|
|
chaincodeInstall $org $peer "${peer_url}" "${peer_tls_rootcert}" ${CC_NAME} ${CC_INIT_VERSION} ${GOPATH}/src/${CC_PATH} # with go 1.14, we cannot use import path with module, see FAB-17924
|
|
done
|
|
done
|
|
|
|
echo_g "=== Install chaincode done ==="
|
|
|
|
echo
|