diff --git a/nix/default.nix b/nix/default.nix index ec9e0542c..dfe537f24 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -30,7 +30,7 @@ let # while others use the repo root. Pass both so the compiler finds either layout. pathArgs = builtins.concatStringsSep " " - (builtins.concatMap (p: [ "--path:${p}" "--path:${p}/src" ]) + (builtins.concatMap (p: [ "--path:${p}" "--path:${p}/src" "--path:${p}/sds" ]) (builtins.attrValues otherDeps)); libExt = diff --git a/waku/node/subscription_manager.nim b/waku/node/subscription_manager.nim index 4b34f8dcb..f954f7449 100644 --- a/waku/node/subscription_manager.nim +++ b/waku/node/subscription_manager.nim @@ -609,8 +609,7 @@ proc startEdgeFilterLoops(self: SubscriptionManager): Result[void, string] = self.updateShardHealth(shard, state) self.edgeFilterWakeup.fire() elif evt.kind == WakuPeerEventKind.EventMetadataUpdated: - self.edgeFilterWakeup.fire() - , + self.edgeFilterWakeup.fire(), ).valueOr: return err("Failed to listen to peer events for edge filter: " & error)