Replace print statements with logging in p2p_network.py for consistent error handling
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Successful in 3s
Integration Tests / test-service-integration (push) Successful in 1m10s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 6s
P2P Network Verification / p2p-verification (push) Successful in 4s
Python Tests / test-python (push) Successful in 10s
Security Scanning / security-scan (push) Failing after 33s

This commit is contained in:
aitbc
2026-04-27 09:06:12 +02:00
parent 93875a110f
commit 2e744861cd

View File

@@ -6,6 +6,7 @@ Handles decentralized peer-to-peer mesh communication between blockchain nodes
import asyncio
import json
import logging
from .config import settings
from .mempool import get_mempool, compute_tx_hash
from .network.nat_traversal import NATTraversalService