fix: call protocol stop methods in WakuNode.stop()

This commit is contained in:
Levente Kiss 2025-10-31 18:37:27 +13:00
parent ce706bada3
commit 705ca38bf3

View File

@ -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();