I’ve been noticing many lines of:
2025-08-31 12:35:12.4109 P2Pool invalid transaction: tx id = 06c5cb6711a9aa8859f1ef04b692063d63d4826c9489d7e64d3196d46c16a854, size = 0, weight = 0, fee = 11466.880 um
in my p2pool logs.
- What is causing this?
- Does this have anything to do with Qubic?


Those “invalid transaction” entries in P2Pool logs are typically caused by transactions that fail fee rate checks against the local mempool policy. The
size = 0, weight = 0values in your log suggest the transaction data was not fetched or parsed successfully — P2Pool received a tx hash from a peer but could not retrieve or validate the full transaction from your node.A few common causes:
The errors are non-critical. P2Pool simply skips invalid transactions when building its share chain. Your mining rewards are not affected.
If it bothers you, verify your monerod is fully synced and the RPC connection between P2Pool and monerod is healthy (check
--rpc-bind-portisn’t rate-limited).