#!/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 ===" for i in {0..6} do echo_b "Fetch block $i" channelFetch ${APP_CHANNEL} $org $peer $i done echo_b "Fetch config block for app channel" channelFetch ${APP_CHANNEL} $org $peer "config" echo_g "Block fetching done!" for i in {0..1} do echo_b "Fetch block $i" channelFetch ${SYS_CHANNEL} $org $peer $i done echo_b "Fetch config block for system channel" channelFetch ${SYS_CHANNEL} $org $peer "config" exit 0