nix/ec-node: use u32 for bridge timeout option

This commit is contained in:
every.channel 2026-02-22 23:40:17 -08:00
parent 3cc6e5eba2
commit f70d4a02fd
No known key found for this signature in database

View file

@ -165,7 +165,7 @@ in
};
timeoutMs = lib.mkOption {
type = lib.types.ints.u64;
type = lib.types.ints.u32;
default = 30000;
description = "Bridge run timeout; service restarts and refreshes gossip peers after this window (0 = run forever).";
};