#!/usr/bin/env bash
# Reads stdin or the file $1, replacing hashes with block info
#
# Uses zebrad-hash-lookup, which uses zcash-cli.
#
# Usage:
# zebrad start | zebrad-log-filter
# ZCASH_CLI="zcash-cli -testnet" zebrad start | zebrad-log-filter
# Find GNU sed
if ; then
GNU_SED=
else
# Just assume it's GNU sed
GNU_SED=
fi
while ; do
# Put each hash on a separate line, then expand them
| \
| \
done