From 38b11abf5b59b84ae65e3b0774ba3fe4453cb8f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Hurlin?= Date: Wed, 12 Feb 2025 11:38:06 +0100 Subject: [PATCH] cardano-testnet: remove check that is too conservative The node itself, when it starts, doesn't require hashes of genesis files. So it seems overkill to require it to start a testnet. See also https://github.com/IntersectMBO/cardano-node/pull/6103#issuecomment-2653267484 --- cardano-testnet/src/Testnet/Start/Cardano.hs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cardano-testnet/src/Testnet/Start/Cardano.hs b/cardano-testnet/src/Testnet/Start/Cardano.hs index 134d3c70a0a..925dbbf60f1 100644 --- a/cardano-testnet/src/Testnet/Start/Cardano.hs +++ b/cardano-testnet/src/Testnet/Start/Cardano.hs @@ -281,11 +281,6 @@ cardanoTestnet UserNodeConfig userSubmittedNodeConfigFile -> liftIO $ IO.makeAbsolute userSubmittedNodeConfigFile - execCli_ - [ "debug", "check-node-configuration" - , "--node-configuration-file", nodeConfigFile - ] - portNumbersWithNodeOptions <- forM cardanoNodes $ \nodeOption -> (nodeOption,) <$> H.randomPort testnetDefaultIpv4Address let portNumbers = snd <$> portNumbersWithNodeOptions