config: change block generation time from 2s to 10s
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 3s
Integration Tests / test-service-integration (push) Successful in 12s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 3s
P2P Network Verification / p2p-verification (push) Successful in 2s
Python Tests / test-python (push) Successful in 10s
Security Scanning / security-scan (push) Successful in 26s

- Increase block_time_seconds from 2 to 10 seconds
- Reduces block generation frequency
- Helps with sync gap recovery by giving more time between blocks
This commit is contained in:
aitbc
2026-04-20 21:49:39 +02:00
parent 8ad3af7131
commit 404cec1098

View File

@@ -39,7 +39,7 @@ class ChainSettings(BaseSettings):
mint_per_unit: int = 0 # No new minting after genesis for production mint_per_unit: int = 0 # No new minting after genesis for production
coordinator_ratio: float = 0.05 coordinator_ratio: float = 0.05
block_time_seconds: int = 2 block_time_seconds: int = 10
# Block production toggle (set false on followers) # Block production toggle (set false on followers)
enable_block_production: bool = True enable_block_production: bool = True