From 60bf5fb8dec0a099c7a63ae3a9de653390ba5d2f Mon Sep 17 00:00:00 2001 From: Otto Sabart Date: Fri, 3 Mar 2023 21:00:00 +0100 Subject: [PATCH] trustedcoin: fix shellcheck --- modules/clightning-plugins/trustedcoin.nix | 2 +- modules/clightning.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/clightning-plugins/trustedcoin.nix b/modules/clightning-plugins/trustedcoin.nix index 9066a52..6199c61 100644 --- a/modules/clightning-plugins/trustedcoin.nix +++ b/modules/clightning-plugins/trustedcoin.nix @@ -9,7 +9,7 @@ let cfg = config.services.clightning.plugins.trustedcoin; in type = types.package; default = config.nix-bitcoin.pkgs.trustedcoin; defaultText = "config.nix-bitcoin.pkgs.trustedcoin"; - description = '' + description = mdDoc '' The package providing trustedcoin binaries. Trustedcoin will try to use a bitcoind as a trusted source for getting block data. If this fails, it will use a trustedcoin providers instead. diff --git a/modules/clightning.nix b/modules/clightning.nix index c30f31d..bf9b098 100644 --- a/modules/clightning.nix +++ b/modules/clightning.nix @@ -33,7 +33,7 @@ let useBcli = mkOption { type = types.bool; default = true; - description = '' + description = mdDoc '' If clightning should use the bitcoind as a main source for getting on-chain block data. Disable this to use a trustedcoin provider (the trustedcoin plugin will be automatically enabled).