Fix typo/bug in mempool-logger script

This commit is contained in:
wiz 2021-08-21 15:39:15 +09:00
parent 7c0ef12920
commit fdac1dd6de

View File

@ -2,6 +2,6 @@
trap "" PIPE
while read input;do
if [ ! -z "${input}" ];then
echo "\`\`\`${input}\`\`\`" | /usr/local/bin/keybase chat send --nonblock --channel "$1" "$2"
echo "\`\`\`${input}\`\`\`" | /usr/local/bin/keybase chat send --nonblock --channel "$2" "$1"
fi
done