From 1b252ff91922c836528429d867c8d15c1b6ac168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Hurlin?= Date: Wed, 9 Oct 2024 16:45:31 +0200 Subject: [PATCH] cardano-testnet: document CLI limitation --- cardano-testnet/src/Parsers/Cardano.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cardano-testnet/src/Parsers/Cardano.hs b/cardano-testnet/src/Parsers/Cardano.hs index e36387d67f5..07b1eefd0df 100644 --- a/cardano-testnet/src/Parsers/Cardano.hs +++ b/cardano-testnet/src/Parsers/Cardano.hs @@ -65,6 +65,8 @@ pCardanoTestnetCliOptions envCli = CardanoTestnetOptions pNumSpoNodes :: Parser [TestnetNodeOptions] pNumSpoNodes = OA.option + -- We don't support passing custom node configurations files on the CLI. + -- So we use a default node configuration all nodes. ((`L.replicate` TestnetNodeOptions Nothing []) <$> auto) ( OA.long "num-pool-nodes" <> OA.help "Number of pool nodes. Note this uses a default node configuration for all nodes."