Set default propose_only_if_mempool_not_empty to False for continuous block creation
Some checks failed
Integration Tests / test-service-integration (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

This commit is contained in:
aitbc
2026-04-13 20:14:47 +02:00
parent 830d8abf76
commit 4c300d0d4e

View File

@@ -48,7 +48,7 @@ class ChainSettings(BaseSettings):
max_txs_per_block: int = 500
# Only propose blocks if mempool is not empty (prevents empty blocks)
propose_only_if_mempool_not_empty: bool = True
propose_only_if_mempool_not_empty: bool = False
# Monitoring interval (in seconds)
blockchain_monitoring_interval_seconds: int = 60