Files
p2pool-salvium/scripts/workflows/test-sync-check.sh

7 lines
132 B
Bash
Raw Normal View History

#!/bin/bash
grep 'ERROR ' p2pool.log | grep -E -v 'submit_block|failed to bind' > errors.log
if [ -s errors.log ]; then
exit 1
fi