From 705ca38bf3e7ad64504ff893684ca52bd41948d9 Mon Sep 17 00:00:00 2001 From: Levente Kiss Date: Fri, 31 Oct 2025 18:37:27 +1300 Subject: [PATCH] fix: call protocol stop methods in WakuNode.stop() --- packages/sdk/src/waku/waku.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/sdk/src/waku/waku.ts b/packages/sdk/src/waku/waku.ts index 7336b06df7..5cc0be30ce 100644 --- a/packages/sdk/src/waku/waku.ts +++ b/packages/sdk/src/waku/waku.ts @@ -232,7 +232,9 @@ export class WakuNode implements IWaku { this._nodeStateLock = true; this.lightPush?.stop(); + this.store?.stop(); await this.filter?.stop(); + await this.relay?.stop(); this.healthIndicator.stop(); this.peerManager.stop(); this.connectionManager.stop();