Fix typo/bug in mempool-logger script

This commit is contained in:
wiz 2021-08-21 15:39:15 +09:00
parent 0a627f96be
commit 1e018a6aa5
No known key found for this signature in database
GPG Key ID: A394E332255A6173

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