From 404cec1098161cd989924a83bc035a5726b610ed Mon Sep 17 00:00:00 2001 From: aitbc Date: Mon, 20 Apr 2026 21:49:39 +0200 Subject: [PATCH] config: change block generation time from 2s to 10s - Increase block_time_seconds from 2 to 10 seconds - Reduces block generation frequency - Helps with sync gap recovery by giving more time between blocks --- apps/blockchain-node/src/aitbc_chain/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/blockchain-node/src/aitbc_chain/config.py b/apps/blockchain-node/src/aitbc_chain/config.py index 6efb2297..9ec70c1e 100755 --- a/apps/blockchain-node/src/aitbc_chain/config.py +++ b/apps/blockchain-node/src/aitbc_chain/config.py @@ -39,7 +39,7 @@ class ChainSettings(BaseSettings): mint_per_unit: int = 0 # No new minting after genesis for production coordinator_ratio: float = 0.05 - block_time_seconds: int = 2 + block_time_seconds: int = 10 # Block production toggle (set false on followers) enable_block_production: bool = True