36 lines
923 B
Bash
36 lines
923 B
Bash
#!/bin/bash
|
|
# Invoke a chaincode
|
|
# Usage: ./script mspId channelID peerAddr mspPath=${PWD}/msp-mspId
|
|
|
|
# Entry function
|
|
main() {
|
|
if [ $# -lt 2 ]; then
|
|
echo "Not enough argument supplied"
|
|
echo "$(basename $0) mspId channelID peerAddr mspPath=${PWD}/msp-mspId"
|
|
exit 1
|
|
fi
|
|
|
|
local mspId=$1
|
|
local channelID=$2
|
|
local peerAddr=$3
|
|
local mspPath=${4:-${PWD}/msp-${mspId}} # Suppose the local msp path named as msp-${msp_id}
|
|
|
|
export FABRIC_LOGGING_SPEC="debug"
|
|
export CORE_PEER_ADDRESS="${peerAddr}"
|
|
export CORE_PEER_LOCALMSPID=${mspId}
|
|
export CORE_PEER_MSPCONFIGPATH=${mspPath}
|
|
export CORE_PEER_TLS_ROOTCERT_FILE=${mspPath}/tlscacerts/tlsca.cert
|
|
export CORE_PEER_TLS_ENABLED=true
|
|
|
|
peer chaincode list \
|
|
--connTimeout=30s \
|
|
--channelID "${channelID}" \
|
|
--instantiated \
|
|
--peerAddresses "${peerAddr}" \
|
|
--tlsRootCertFiles "${CORE_PEER_TLS_ROOTCERT_FILE}"
|
|
|
|
exit 0
|
|
}
|
|
|
|
main "$@"
|