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
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user