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

33 lines
490 B
Bash
Raw Normal View History

2017-10-08 13:55:16 +08:00
#!/usr/bin/env bash
# This script will fetch blocks for testing.
# 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
org=1
peer=0
2017-10-08 13:55:16 +08:00
2017-12-06 16:24:33 +08:00
echo_b "=== Fetching blocks ==="
2017-10-08 13:55:16 +08:00
2017-12-06 16:24:33 +08:00
for i in {0..4}
do
echo_b "Fetch block $i"
channelFetch ${APP_CHANNEL} $org $peer $i
done
2017-10-08 13:55:16 +08:00
2017-12-06 16:24:33 +08:00
echo_g "Block fetching done!"
2017-10-08 13:55:16 +08:00
2017-12-06 16:24:33 +08:00
for i in {0..1}
do
echo_b "Fetch block $i"
channelFetch ${SYS_CHANNEL} $org $peer $i
done
2017-10-08 13:55:16 +08:00
2017-12-06 16:24:33 +08:00
exit 0