2017-11-24 14:45:16 +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
|
|
|
|
|
|
|
|
#Upgrade to new version
|
|
|
|
echo_b "Upgrade chaincode to new version..."
|
2017-12-19 14:40:39 +08:00
|
|
|
chaincodeInstall 1 0 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}"
|
|
|
|
chaincodeInstall 1 1 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}"
|
|
|
|
chaincodeInstall 2 0 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}"
|
|
|
|
chaincodeInstall 2 1 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}"
|
2017-11-24 14:45:16 +08:00
|
|
|
|
|
|
|
# Upgrade on one peer of the channel will update all
|
2017-12-19 14:40:39 +08:00
|
|
|
chaincodeUpgrade ${APP_CHANNEL} 1 0 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_UPGRADE_ARGS}"
|
2017-11-24 14:45:16 +08:00
|
|
|
|
|
|
|
# Query new value, should refresh through all peers in the channel
|
2017-12-19 14:40:39 +08:00
|
|
|
chaincodeQuery ${APP_CHANNEL} 1 0 "${CC_NAME}" "${CC_QUERY_ARGS}" 100
|
|
|
|
chaincodeQuery ${APP_CHANNEL} 2 1 "${CC_NAME}" "${CC_QUERY_ARGS}" 100
|
2017-11-24 14:45:16 +08:00
|
|
|
|
|
|
|
echo_g "=== All GOOD, chaincode Upgrade completed ==="
|