2017-09-01 20:09:18 +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
|
|
|
|
|
2017-12-06 16:24:33 +08:00
|
|
|
echo_b " ========== Network initialization start ========== "
|
2017-09-01 20:09:18 +08:00
|
|
|
|
|
|
|
## Create channel
|
2017-12-12 22:47:40 +08:00
|
|
|
echo_b "Creating channel ${APP_CHANNEL} with ${APP_CHANNEL_TX}..."
|
|
|
|
channelCreate ${APP_CHANNEL} ${APP_CHANNEL_TX}
|
2017-09-01 20:09:18 +08:00
|
|
|
|
2017-09-14 15:26:06 +08:00
|
|
|
sleep 1
|
|
|
|
|
2017-09-01 20:09:18 +08:00
|
|
|
## Join all the peers to the channel
|
2017-09-11 10:33:29 +08:00
|
|
|
echo_b "Having peer0 join the channel..."
|
2017-12-06 16:24:33 +08:00
|
|
|
channelJoin ${APP_CHANNEL} 0
|
2017-09-14 15:26:06 +08:00
|
|
|
|
2017-09-01 20:09:18 +08:00
|
|
|
## Set the anchor peers for each org in the channel
|
2017-10-28 14:41:13 +08:00
|
|
|
echo_b "Updating anchor peers for peer0/org1... no use for only single channel"
|
2017-12-06 16:24:33 +08:00
|
|
|
updateAnchorPeers ${APP_CHANNEL} 0
|
2017-09-14 15:26:06 +08:00
|
|
|
|
2017-09-01 20:09:18 +08:00
|
|
|
## Install chaincode on all peers
|
|
|
|
echo_b "Installing chaincode on peer0..."
|
2017-12-06 16:24:33 +08:00
|
|
|
chaincodeInstall 0 ${CC_INIT_ARGS}
|
2017-09-14 15:26:06 +08:00
|
|
|
|
2017-09-01 20:09:18 +08:00
|
|
|
# Instantiate chaincode on all peers
|
|
|
|
# Instantiate can only be executed once on any node
|
|
|
|
echo_b "Instantiating chaincode on the channel..."
|
2017-12-06 16:24:33 +08:00
|
|
|
chaincodeInstantiate ${APP_CHANNEL} 0
|
2017-09-14 15:26:06 +08:00
|
|
|
|
2017-12-06 16:24:33 +08:00
|
|
|
echo_g "=============== All GOOD, network initialization done =============== "
|
2017-09-01 20:09:18 +08:00
|
|
|
echo
|
|
|
|
|
|
|
|
exit 0
|