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
|
|
|
|
|
2018-01-23 17:53:52 +08:00
|
|
|
# Instantiate chaincode in the channel, executed once on any node is enough
|
|
|
|
# (once for each channel is enough, we make it concurrent here)
|
|
|
|
echo_b "=== Instantiating chaincode on channel ${APP_CHANNEL}... ==="
|
|
|
|
|
2017-12-19 14:40:39 +08:00
|
|
|
chaincodeInstantiate "${APP_CHANNEL}" 1 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INIT_ARGS}
|
|
|
|
chaincodeInstantiate "${APP_CHANNEL}" 2 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INIT_ARGS}
|
2017-11-24 14:45:16 +08:00
|
|
|
|
2018-01-23 17:53:52 +08:00
|
|
|
echo_g "=== Instantiate chaincode on channel ${APP_CHANNEL} done ==="
|
|
|
|
|
|
|
|
echo
|