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

8 lines
189 B
Bash
Raw Normal View History

#!/bin/bash
2025-10-13 06:46:19 +02:00
grep 'ERROR ' p2pool.log | grep -E -v 'submit_block|failed to bind|ZMQ is not running|block header for seed' > errors.log
if [ -s errors.log ]; then
2025-10-11 16:31:21 +02:00
cat errors.log
exit 1
fi