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

22 lines
381 B
Bash
Raw Normal View History

2018-01-03 21:19:09 +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 ==="
channelFetchAll ${APP_CHANNEL} $org $peer
channelFetchAll ${SYS_CHANNEL} $org $peer
echo_g "Block fetching done!"