From b76556e38b5ad3e34d26158fdc5e3520919246f3 Mon Sep 17 00:00:00 2001 From: Fabiana Cecin Date: Thu, 4 Jun 2026 17:12:48 -0300 Subject: [PATCH] Fix CatchableError -> ServiceSetupError (copied from #3931) --- waku/factory/waku.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waku/factory/waku.nim b/waku/factory/waku.nim index effb2cd12..44e685c45 100644 --- a/waku/factory/waku.nim +++ b/waku/factory/waku.nim @@ -119,7 +119,7 @@ proc setupSwitchServices( for service in waku.node.switch.services: try: service.setup(waku.node.switch) - except CatchableError as e: + except ServiceSetupError as e: error "failed to set up libp2p switch service", error = e.msg ## Initialisation