Fix nostrRelays description: space-separated, not comma-separated
Some checks are pending
nix-bitcoin tests / build_test_drivers (push) Waiting to run
nix-bitcoin tests / test_scenario (default) (push) Blocked by required conditions
nix-bitcoin tests / test_scenario (joinmarket-bitcoind-29) (push) Blocked by required conditions
nix-bitcoin tests / test_scenario (netns) (push) Blocked by required conditions
nix-bitcoin tests / test_scenario (netnsRegtest) (push) Blocked by required conditions
nix-bitcoin tests / check_flake (push) Waiting to run
Some checks are pending
nix-bitcoin tests / build_test_drivers (push) Waiting to run
nix-bitcoin tests / test_scenario (default) (push) Blocked by required conditions
nix-bitcoin tests / test_scenario (joinmarket-bitcoind-29) (push) Blocked by required conditions
nix-bitcoin tests / test_scenario (netns) (push) Blocked by required conditions
nix-bitcoin tests / test_scenario (netnsRegtest) (push) Blocked by required conditions
nix-bitcoin tests / check_flake (push) Waiting to run
Lightning.Pub splits NOSTR_RELAYS on spaces, not commas. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
966d668f4d
commit
66b242b7e0
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ let
|
||||||
nostrRelays = mkOption {
|
nostrRelays = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "wss://relay.lightning.pub";
|
default = "wss://relay.lightning.pub";
|
||||||
description = "Comma-separated list of Nostr relay WebSocket URLs.";
|
description = "Space-separated list of Nostr relay WebSocket URLs.";
|
||||||
};
|
};
|
||||||
|
|
||||||
serviceFee = {
|
serviceFee = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue