Added empty check for pruned_blob before debug deserialize, Added exclusions for no connections to other p2pool nodes, m_transactionHashes is empty, calc_miner_tx_hash fast path

This commit is contained in:
Matt Hess
2025-12-24 18:35:01 +00:00
parent 4f4b3d4753
commit 5ce7dbf9f0
2 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
#!/bin/bash
grep 'ERROR ' p2pool.log | grep -E -v 'submit_block|failed to bind|ZMQ is not running|block header for seed' > errors.log
# Filter out expected/transient errors during CI sync test
grep 'ERROR ' p2pool.log | grep -E -v 'submit_block|failed to bind|ZMQ is not running|block header for seed|no connections to other p2pool nodes|m_transactionHashes is empty|calc_miner_tx_hash fast path' > errors.log
if [ -s errors.log ]; then
cat errors.log