docker-compose-files/hyperledger_fabric/v1.0.6/scripts/test_fetch_blocks.sh

24 lines
454 B
Bash
Raw Normal View History

2018-02-27 12:51:06 +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
org=1
peer=0
echo_b "=== Fetching blocks of channel ${APP_CHANNEL} and ${SYS_CHANNEL} ==="
channelFetchAll ${APP_CHANNEL} $org $peer
channelFetchAll ${SYS_CHANNEL} $org $peer
echo_g "=== Fetched Blocks from channels done! ==="
echo