docker-compose-files/hyperledger_fabric/latest/scripts/test_update_anchors.sh

19 lines
566 B
Bash
Raw Normal View History

2017-12-06 22:30:57 +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
## Set the anchor peers for each org in the channel
2018-01-30 15:54:49 +08:00
echo_b "=== Updating anchor peers to peer0 for org1... ==="
2019-05-02 17:30:13 +08:00
channelUpdate ${APP_CHANNEL} 1 0 ${ORDERER0_URL} ${ORDERER0_TLS_ROOTCERT} Org1MSPanchors.tx
2017-12-06 22:30:57 +08:00
2018-01-30 15:54:49 +08:00
echo_b "=== Updating anchor peers to peer0 for org2... ==="
2019-05-02 17:30:13 +08:00
channelUpdate ${APP_CHANNEL} 2 0 ${ORDERER0_URL} ${ORDERER0_TLS_ROOTCERT} Org2MSPanchors.tx
2018-01-30 15:54:49 +08:00
echo_b "=== Updated anchor peers ==="
echo