debug: add logging for block production chain filtering
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 6s
Integration Tests / test-service-integration (push) Has been cancelled
Multi-Node Blockchain Health Monitoring / health-check (push) Has been cancelled
P2P Network Verification / p2p-verification (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has started running

This commit is contained in:
aitbc
2026-04-28 12:45:23 +02:00
parent 0029a16802
commit 865f21fb85

View File

@@ -252,6 +252,8 @@ class BlockchainNode:
production_chains_str = getattr(settings, 'block_production_chains', chains_str)
production_chains = [c.strip() for c in production_chains_str.split(",") if c.strip()]
logger.info(f"Supported chains: {chains}, Block production chains: {production_chains}")
for chain_id in chains:
# Only start proposer if chain is in production chains
if chain_id not in production_chains: