Files
p2pool-salvium/scripts/workflows/test-sync-check.sh
2025-10-03 13:34:02 +02:00

7 lines
132 B
Bash
Executable File

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