24 lines
456 B
Bash
24 lines
456 B
Bash
|
#!/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
|
||
|
|
||
|
## Join all the peers to the channel
|
||
|
echo_b "=== Getting info of channel ${APP_CHANNEL}... ==="
|
||
|
|
||
|
#set -x
|
||
|
|
||
|
for org in "${ORGS[@]}"; do
|
||
|
for peer in "${PEERS[@]}"; do
|
||
|
channelGetInfo ${APP_CHANNEL} $org $peer
|
||
|
done
|
||
|
done
|
||
|
|
||
|
echo_g "=== Get info of channel ${APP_CHANNEL} Complete ==="
|
||
|
|
||
|
echo
|