Fix nix and lint

* Fix nix path heuristic missing sds srcDir
* Fix lint
This commit is contained in:
Fabiana Cecin 2026-05-29 22:12:17 -03:00
parent bef86e44bb
commit dcca369c12
No known key found for this signature in database
GPG Key ID: BCAB8A55CB51B6C7
2 changed files with 2 additions and 3 deletions

View File

@ -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 =

View File

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