From 4af51f6d794409495433a3cbb236db3ed7688e85 Mon Sep 17 00:00:00 2001 From: Bernd Date: Fri, 27 Feb 2026 08:28:56 +0100 Subject: [PATCH] fix: stabilize Firo node config to prevent RPC deadlocks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restrict to IPv4-only to eliminate hanging IPv6 connections, reduce max peer connections (125→40), increase RPC work queue (16→32), and lower dbcache (1024→512) for more frequent flushes. --- infrastructure/config/firo/firo.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/infrastructure/config/firo/firo.conf b/infrastructure/config/firo/firo.conf index 5f3e0c79a9..f5f85522f3 100644 --- a/infrastructure/config/firo/firo.conf +++ b/infrastructure/config/firo/firo.conf @@ -20,7 +20,11 @@ addressindex=0 timestampindex=0 spentindex=0 +# Network +onlynet=ipv4 + # Performance -dbcache=1024 -maxconnections=125 +dbcache=512 +maxconnections=40 rpcthreads=8 +rpcworkqueue=32